https://github.com/liteobject/demo-openrouter-ai
https://github.com/liteobject/demo-openrouter-ai
ai machine-learning openrouter python
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/liteobject/demo-openrouter-ai
- Owner: LiteObject
- Created: 2024-02-02T22:59:12.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-03T21:53:34.000Z (about 1 year ago)
- Last Synced: 2024-12-29T18:21:55.244Z (7 months ago)
- Topics: ai, machine-learning, openrouter, python
- Language: Python
- Homepage:
- Size: 31.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Explore Open Router AI
## Create a virtual python environment
- `virtualenv -p python3.11 env_name`
- `python -m venv env_name`---
## Create a file listing all required dependencies of the Python project
pip freeze > requirements.txt## Install dependencies from requirements.txt:
pip install -r requirements.txt---
## Stremlit setup### Install streamlit package
pip install streamlit### Run the app
streamlit run app.py