Skip to content

Commit 1b61bcc

Browse files
authored
Merge pull request #24 from AgentOptimizer/refactor/single-package
Restructure to single package with docs site
2 parents d9f6c9e + 57fb771 commit 1b61bcc

51 files changed

Lines changed: 1532 additions & 1324 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/docs.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Deploy docs
2+
3+
on:
4+
push:
5+
branches: [main]
6+
workflow_dispatch:
7+
8+
permissions:
9+
contents: write
10+
11+
jobs:
12+
deploy:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v4
16+
17+
- uses: actions/setup-python@v5
18+
with:
19+
python-version: "3.11"
20+
21+
- run: pip install mkdocs-material mkdocstrings[python]
22+
23+
- run: mkdocs gh-deploy --force

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,4 +215,4 @@ __marimo__/
215215

216216
# Example outputs
217217
llm_cache/
218-
litellm_config_optimized.yaml
218+
examples/optimized_config.yaml

0 commit comments

Comments
 (0)