Skip to content
Merged
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
3 changes: 2 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ llmpane/
│ ├── llmpane-py/ # Python package (Pydantic models, FastAPI utilities)
│ └── llmpane-react/ # React package (UI components, hooks)
└── examples/
└── fastapi-example/ # Complete working demonstration app
├── fastapi-example/ # Basic streaming chat demo
└── agentic-chat-example/ # Agent with tools and conversation persistence
```

## Prerequisites
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ Configure these in your repository settings under Settings > Secrets and variabl
| `NPM_TOKEN` | npm automation token with publish access |

For PyPI, we use [Trusted Publishing](https://docs.pypi.org/trusted-publishers/) with OIDC. Configure the GitHub publisher in your PyPI project settings:
- Owner: `hartbrook`
- Owner: `HartBrook`
- Repository: `llmpane`
- Workflow: `publish-python.yml`
- Environment: `pypi` (or `testpypi` for TestPyPI)
Expand Down
6 changes: 3 additions & 3 deletions packages/llmpane-py/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ stores = ["llmpane[file,redis,sql]"]
all = ["llmpane[fastapi,agent,stores,dev]"]

[project.urls]
Homepage = "https://github.com/hartbrook/llmpane"
Documentation = "https://github.com/hartbrook/llmpane#readme"
Repository = "https://github.com/hartbrook/llmpane"
Homepage = "https://github.com/HartBrook/llmpane"
Documentation = "https://github.com/HartBrook/llmpane#readme"
Repository = "https://github.com/HartBrook/llmpane"

[tool.hatch.build.targets.wheel]
packages = ["llmpane"]
Expand Down