{"id":41414901,"url":"https://github.com/hra42/teams-background-generator","last_synced_at":"2026-01-23T13:46:25.343Z","repository":{"id":270626576,"uuid":"902954260","full_name":"hra42/teams-background-generator","owner":"hra42","description":"Generate Images easy, tuned for Microsoft Teams backgrounds","archived":false,"fork":false,"pushed_at":"2024-12-15T14:20:15.000Z","size":18,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-08T00:58:32.708Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hra42.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-12-13T16:03:08.000Z","updated_at":"2025-07-18T06:15:03.000Z","dependencies_parsed_at":"2025-01-01T23:50:16.267Z","dependency_job_id":"008e8e1c-4c6f-42c0-a895-d7099fa31021","html_url":"https://github.com/hra42/teams-background-generator","commit_stats":null,"previous_names":["hra42/teams-background-generator"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/hra42/teams-background-generator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hra42%2Fteams-background-generator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hra42%2Fteams-background-generator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hra42%2Fteams-background-generator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hra42%2Fteams-background-generator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hra42","download_url":"https://codeload.github.com/hra42/teams-background-generator/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hra42%2Fteams-background-generator/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28693331,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-23T11:01:27.039Z","status":"ssl_error","status_checked_at":"2026-01-23T11:00:26.909Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-23T13:46:24.745Z","updated_at":"2026-01-23T13:46:25.318Z","avatar_url":"https://github.com/hra42.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Teams Background Generator\n\nA Streamlit-based web application that generates professional backgrounds for Microsoft Teams using AI. The application leverages multiple AI image generation models through Replicate and Google Cloud Vertex AI platforms.\n\n## Features\n\n- Generate custom backgrounds using AI models from:\n  - Replicate (Flux models, Photon, Ideogram-v2)\n  - Google Cloud Vertex AI (Imagen 3)\n- Multiple aspect ratio support (16:9, 3:2, 1:1, etc.)\n- Advanced customization options\n- Direct download for Teams compatibility\n- Docker support for easy deployment\n\n## Prerequisites\n\n- Python 3.11 or higher\n- Docker (optional)\n- Google Cloud Project with Vertex AI API enabled\n- Replicate API account\n\n## Environment Variables\n\nCreate a `.env` file based on `.env.example`:\n\n```env\n# Google Cloud\nGOOGLE_APPLICATION_CREDENTIALS=path_to_your_credentials.json\nGOOGLE_PROJECT_ID=your-project-id\nGOOGLE_LOCATION=us-central1\n\n# Replicate\nREPLICATE_API_TOKEN=your_replicate_token\n```\n\n## Installation\n\n### Local Development\n\n1. Clone the repository:\n```bash\ngit clone https://github.com/yourusername/teams-background-generator.git\ncd teams-background-generator\n```\n\n2. Create a virtual environment and activate it:\n```bash\npython -m venv venv\nsource venv/bin/activate  # On Windows: venv\\Scripts\\activate\n```\n\n3. Install dependencies:\n```bash\npip install -r requirements.txt\n```\n\n4. Run the application:\n```bash\nstreamlit run src/main.py\n```\n\n### Docker Deployment\n\n1. Build and run using Docker Compose:\n```bash\ndocker-compose up --build\n```\n\nThe application will be available at `http://localhost:8501`\n\n## Usage\n\n1. Select an AI model from the dropdown menu\n2. Enter a description of the background you want to generate\n3. Adjust advanced settings if needed:\n   - Aspect Ratio\n   - Output Format\n   - Safety Level\n   - Style Strength\n4. Click \"Generate Background\"\n5. Download the generated image using the \"Download for Teams\" button\n\n## Available Models\n\n### Replicate Models\n- Flux 1.1 Pro\n- Flux Schnell LoRA\n- Flux 1.1 Pro Ultra\n- Flux Dev LoRA\n- Photon\n- Ideogram-v2\n\n### Vertex AI Models\n- Imagen 3\n- Imagen 3 Fast\n\n## Project Structure\n\n```\n├── src/\n│   ├── api/\n│   │   ├── replicate.py\n│   │   └── vertex.py\n│   ├── utils/\n│   │   └── config.py\n│   └── main.py\n├── docker-compose.yml\n├── Dockerfile\n├── requirements.txt\n└── .env.example\n```\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n## License\n\nThis project is released into the public domain under The Unlicense. See `LICENSE.md` for more details.\n\n## Acknowledgments\n\n- Streamlit for the web framework\n- Replicate for AI model access\n- Google Cloud Vertex AI for Imagen models\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhra42%2Fteams-background-generator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhra42%2Fteams-background-generator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhra42%2Fteams-background-generator/lists"}