catalan translation

pull/175/head
Elvis Saravia 1 year ago
parent 67e8e15584
commit fba0f846be

@ -1,24 +0,0 @@
import type { AppProps } from 'next/app';
import Script from 'next/script';
import { Analytics } from '@vercel/analytics/react';
import './style.css';
function MyApp({ Component, pageProps }: AppProps) {
return (
<>
<Script async src="https://www.googletagmanager.com/gtag/js?id=G-ST7R3WQ353"/>
<Script>{`
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-ST7R3WQ353');
`}
</Script>
<Component {...pageProps} />
<Analytics />
</>
);
}
export default MyApp;

@ -1,9 +0,0 @@
# Curs d'Enginyeria de Prompts
Hem establert una col·laboració amb Sphere per oferir un curs de ["Enginyeria de Prompts per a LLMs"](https://www.getsphere.com/cohorts/prompt-engineering-for-llms?source=promptingguide) al maig de 2023.
Aquest curs pràctic està dissenyat per ensenyar les tècniques i eines d'enginyeria de prompts més recents utilitzades en el món real per construir aplicacions efectives sobre models de llenguatge de grans dimensions.
Si voleu elevar les vostres habilitats en enginyeria de prompts al següent nivell, us recomanem molt aquest curs.
Aquest curs també inclou un certificat de finalització.

@ -1 +0,0 @@
pre { white-space: pre-wrap; }

@ -5,7 +5,7 @@ const withNextra = require('nextra')({
module.exports = withNextra({
i18n: {
locales: ['en', 'zh', 'jp', 'pt', 'tr', 'es', 'it', 'fr', 'kr'],
locales: ['en', 'zh', 'jp', 'pt', 'tr', 'es', 'it', 'fr', 'kr', `ca`],
defaultLocale: 'en',
},
})

@ -0,0 +1,28 @@
{
"index": "Prompt Engineering",
"introduction": "Introduction",
"techniques": "Techniques",
"applications": "Applications",
"models": "Models",
"risks": "Risks & Misuses",
"papers": "Papers",
"tools": "Tools",
"notebooks": "Notebooks",
"datasets": "Datasets",
"readings": "Additional Readings",
"about": {
"title": "About",
"type": "page"
},
"course":{
"title": "Prompt Engineering Course",
"type": "page"
},
"contact": {
"title": "Contact ↗",
"type": "page",
"href": "https://twitter.com/omarsar0",
"newWindow": true
}
}

@ -0,0 +1,7 @@
# Prompt Engineering Course
Due to high demand, we are partnering with Maven to deliver a new course on Prompt Engineering for LLMs. If you are interested, [join the waitlist](https://maven.com/forms/4f11a9). [Elvis Saravia](https://www.linkedin.com/in/omarsar/), who has worked at companies like Meta AI and Elastic, and has years of experience in AI and LLMs, will be the instructor of this course.
This hands-on course will cover prompt engineering techniques, use cases, and tools for effectively building applications of top of large language models.
If you want to take your prompt engineering skills to the next level, we highly recommend the course.

@ -1,4 +1,4 @@
### Consells generals per dissenyar prompts
# Consells generals per dissenyar prompts
Aquí teniu alguns consells a tenir en compte mentre dissenyeu els vostres prompts:

@ -8,7 +8,7 @@ import MCOT from '../../img/multimodal-cot.png'
El model multimodal CoT (1B) supera el GPT-3.5 en el banc de proves ScienceQA.
<Captura de pantalla src={MCOT} alt="MCOT" />
<Screenshot src={MCOT} alt="MCOT" />
Font de la imatge: [Zhang et al. (2023)](https://arxiv.org/abs/2302.00923)
Lectura addicional:

@ -25,6 +25,7 @@ const config: DocsThemeConfig = {
{ locale: 'es', text: 'Español' },
{ locale: 'fr', text: 'Français' },
{ locale: 'kr', text: '한국어' },
{ locale: `ca`, text: `Català` },
],
head: function UseHead() {
const { title } = useConfig()

Loading…
Cancel
Save