Skip to content

Code source to explain how to use AI as a simple library

License

Notifications You must be signed in to change notification settings

philippart-s/ai-as-lib

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

70 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🔎 Why and What? 🔍

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).

⚙️ Setup ⚙️

A .env file is needed in order to run the examples. You can copy the .env.example file and rename it as .env.

📝 Snippets 📝

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

🗃️ Repository organisation 🗃️

🖼️ Slides 🖼️

The slides are in the slides folder and are developed with SliDesk.

🤖 React client 🤖

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 🐍

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 🕸️

JavaScript source files are in the javascript folder.

cd javascript \
npm install

☕️ Java ☕️

Java source files are in the java folder.

cd java \
mvn clean compile

☕️ Quarkus ⚡️️

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 \

🤖 React client 🤖

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.