This repository contains the source code to discover how to use OVHloud AI Endpoints to use AI as a library.
The repository have a main branch with the all coded examples and other branches with the step by step of the tutorials.
The special branch live-coding
is used to do live coding sessions.
At any moment you can switch to another branch to go to a specific step of the tutorial (or merge the desired branch into the live-coding branch
branch).
A .env
file is needed in order to run the examples. You can copy the .env.example
file and rename it as .env
.
The repository .vscode contains VSCode snippets to help you with the code. One file by language:
python.code-snippets
for Python
Each of these files is created using the tools snippets. Here is an example of usage:
snippets generate \
--input ./.vscode/python-snippets.yml \
--output ./.vscode/python.code-snippets
The slides are in the slides folder and are developed with SliDesk.
Web client, written in React, is in the react-client folder.
cd react-client \
npm install \
npm start
Open http://localhost:3000 to see the client.
Python source files are in the python folder.
Create a virtual environment and install the dependencies:
cd python \
python3 -m venv .venv \
source .venv/bin/activate \
pip install -r requirements.txt \
JavaScript source files are in the javascript folder.
cd javascript \
npm install
Java source files are in the java folder.
cd java \
mvn clean compile
Quarkus source files are in the java-quarkus folder.
cd java-quarkus \
quarkus create app fr.wilda.ai:ai-as-lib --extension='quarkus-langchain4j-mistral-ai,rest' --no-wrapper \
Web client, written in React, is in the react-client folder.
cd react-client \
npm install \
npm start
Open http://localhost:3000 to see the client.