Skip to content

Commit 9638c07

Browse files
committed
initial commit
0 parents  commit 9638c07

20 files changed

+7079
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/js/node_modules/

README.md

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# CodeLab GenAI Zenika
2+
3+
Bienvenue dans ce CodeLab autour de la GenAI.
4+
5+
## L'objectif
6+
7+
Developper une application permettant d'appeler des LLM (Large Language Model) customizer.
8+
9+
## Les technos
10+
11+
Pour ce CodeLab, nous allons principalement utiliser deux librairies / programmes:
12+
13+
- [Ollama](https://ollama.com/) : Permet de faire des inférences sur un modèle en local
14+
- [LangChain](https://www.langchain.com/) : Framework permettant de construire des applications basé sur des LLM
15+
16+
Côté modèle, nous allons utiliser [Mistral 7B](https://mistral.ai/) un modèle générique de génération de texte.
17+
18+
Le CodeLab peut être réalisé dans différents langages:
19+
20+
- Python
21+
- Java
22+
- Javascript

java/.gitkeep

Whitespace-only changes.

java/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# CodeLab GenAI Zenika - Java

js/.gitkeep

Whitespace-only changes.

js/README.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# React + Vite
2+
3+
This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
4+
5+
Currently, two official plugins are available:
6+
7+
- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh
8+
- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh

js/index.html

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>Vite + React</title>
8+
</head>
9+
<body>
10+
<div id="root"></div>
11+
<script type="module" src="/src/main.jsx"></script>
12+
</body>
13+
</html>

0 commit comments

Comments
 (0)