You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Web-Dev-For-Beginners/translations/en/9-chat-project/solution/backend/python
localizeflow[bot] 649b314d20
chore(i18n): sync translations with latest source changes (chunk 1/1, 394 changes)
5 months ago
..
README.md chore(i18n): sync translations with latest source changes (chunk 1/1, 394 changes) 5 months ago

README.md

Run code

Set up

Create virtual environment

python -m venv venv
source ./venv/bin/activate

Install dependencies

pip install openai fastapi uvicorn python-dotenv

Run API

# Method 1: Direct execution
python api.py

# Method 2: Using uvicorn
uvicorn api:app --host 0.0.0.0 --port 5000 --reload

Test API

Visit the interactive API documentation at: http://localhost:5000/docs

Run frontend

Make sure you stand in the frontend folder

Locate app.js, change BASE_URL to that of your backend URL

Run it

npx http-server -p 8000

Try typing a message in the chat, you should see a response (providing you're running this in a Codespace or have set up a access token).

Set up access token (if you don't run this in a Codespace)

See Set up PAT


Disclaimer: This document has been translated using the AI translation service Co-op Translator. While we strive for accuracy, please be aware that automated translations may contain errors or inaccuracies. The original document in its native language should be considered the authoritative source. For critical information, professional human translation is recommended. We are not liable for any misunderstandings or misinterpretations arising from the use of this translation.