Python CLI using OpenAI API with SQLite conversation persistence. Supports named conversations, model selection, system prompts, and streaming responses. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
10 lines
203 B
TOML
10 lines
203 B
TOML
[project]
|
|
name = "chatty"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"openai>=2.16.0",
|
|
"python-dotenv>=1.2.1",
|
|
]
|