Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ The first six examples can be scaffolded fresh via the `swytchcode examples` int
| [**`langswytch`**](./langswytch) | Advanced LangGraph cognitive patterns | LangGraph | Multi-Agent • Orchestration • Memory |
| [**`swytchcode-refund-agent-openclaw`**](./swytchcode-refund-agent-openclaw) | Automated refund processing agent | OpenClaw | Support • Refunds |
| [**`star-repo-openai-agents-python`**](./star-repo-openai-agents-python) | Star a GitHub repository via Swytchcode CLI | OpenAI Agents SDK | GitHub • OpenAI • Python |
| [`ai-agent-api-reliability`](./ai-agent-api-reliability) | AI agent API reliability and controlled GitHub execution | Gemini + Swytchcode Runtime | GitHub • Gemini • Reliability • Python |
| [**`github-agent-crewai-python`**](./github-agent-crewai-python) | GitHub operations agent with CrewAI | CrewAI | GitHub • CrewAI • Python |

## License
Expand Down
29 changes: 29 additions & 0 deletions ai-agent-api-reliability/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Environment variables / secrets
.env
.env.*
!.env.example

# Python virtual environments
venv/
.venv/
**/venv/
**/.venv/

# Python cache
__pycache__/
*.py[cod]
*$py.class

# macOS
.DS_Store

# IDE / editor files
.vscode/
.idea/

# Swytchcode local/project state
**/.swytchcode/

# Logs / temporary files
*.log
*.tmp
Loading