AlphaSphereDotAI/Chattr
0
1---2title: Chattr3emoji: ๐ฌ4colorFrom: gray5colorTo: blue6sdk: docker7app_port: 78608short_description: Chat with Characters9---10 11## **Chattr**: App part of the Chatacter Backend12 13[](https://github.com/AlphaSphereDotAI/chattr/actions/workflows/build.yaml)14[](https://github.com/AlphaSphereDotAI/chattr/actions/workflows/ci_tools.yaml)15[](https://github.com/AlphaSphereDotAI/chattr/actions/workflows/github-code-scanning/codeql)16[](https://github.com/AlphaSphereDotAI/chattr/actions/workflows/dependabot/dependabot-updates)17[](https://github.com/AlphaSphereDotAI/chattr/actions/workflows/release.yaml)18[](https://github.com/AlphaSphereDotAI/chattr/actions/workflows/test.yaml)19 20### Environment Variables21 22The configuration of the server is done using environment variables:23 24| Name | Description | Required | Default Value |25|:---------------------------|:---------------------------------|:--------:|:-------------------------------------------|26| `MODEL__URL` | OpenAI-compatible endpoint | โ | `https://api.groq.com/openai/v1` |27| `MODEL__NAME` | Model name to use for chat | โ | `llama3-70b-8192` |28| `MODEL__API_KEY` | API key for model access | โ | `None` |29| `MODEL__TEMPERATURE` | Model temperature (0.0-1.0) | โ | `0.0` |30| `SHORT_TERM_MEMORY__URL` | Redis URL for memory store | โ | `redis://localhost:6379` |31| `VECTOR_DATABASE__NAME` | Vector database collection name | โ | `chattr` |32| `VOICE_GENERATOR_MCP__URL` | MCP service for audio generation | โ | `http://localhost:8001/gradio_api/mcp/sse` |33| `VIDEO_GENERATOR_MCP__URL` | MCP service for video generation | โ | `http://localhost:8002/gradio_api/mcp/sse` |34| `DIRECTORY__ASSETS` | Base assets directory | โ | `./assets` |35| `DIRECTORY__LOG` | Log files directory | โ | `./logs` |36| `DIRECTORY__IMAGE` | Image assets directory | โ | `./assets/image` |37| `DIRECTORY__AUDIO` | Audio assets directory | โ | `./assets/audio` |38| `DIRECTORY__VIDEO` | Video assets directory | โ | `./assets/video` |39 