Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/liteobject/demo-openrouter-ai
https://github.com/liteobject/demo-openrouter-ai
ai machine-learning openrouter python
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/liteobject/demo-openrouter-ai
- Owner: LiteObject
- Created: 2024-02-02T22:59:12.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-05-03T21:53:34.000Z (8 months ago)
- Last Synced: 2024-11-07T22:13:09.731Z (about 2 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