Initial commit: project scaffold

This commit is contained in:
Priya Natarajan 2026-02-02 09:14:00 +00:00
commit 02aefedaa7
4 changed files with 32 additions and 0 deletions

16
LICENSE Normal file
View File

@ -0,0 +1,16 @@
MIT License
Copyright (c) 2026 RouteForge Contributors
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to
deal in the Software without restriction, including without limitation the
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.

13
README.md Normal file
View File

@ -0,0 +1,13 @@
# RouteForge
A lightweight gateway for routing requests across multiple LLM providers (Gemini, Claude, OpenAI) behind a single interface.
## Status
Early developement. Contributions welcome via pull request.
## Install
```
pip install -r requirements.txt
```

2
requirements.txt Normal file
View File

@ -0,0 +1,2 @@
requests>=2.31.0
pytest>=8.0.0

1
routeforge/__init__.py Normal file
View File

@ -0,0 +1 @@
__version__ = "0.3.0"