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
2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
- NEVER add any AI attribution, co-author tags, or tool attribution to commits
- NEVER include emojis like 🤖 in commit messages
- Commit messages should contain ONLY the commit description — nothing else
- This applies to all commits across all timepoint-ai repositories
- This applies to all commits across all timepointai repositories
2 changes: 1 addition & 1 deletion EXAMPLE_RUN.md
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ All inference via OpenRouter using open-weight models.
### Reproduce this run

```bash
git clone https://github.com/timepoint-ai/timepoint-pro.git
git clone https://github.com/timepointai/timepoint-pro.git
cd timepoint-pro
pip install -r requirements.txt
export OPENROUTER_API_KEY=your_key_here
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ flowchart TD

## Quick Start
```bash
git clone https://github.com/timepoint-ai/timepoint-pro.git
git clone https://github.com/timepointai/timepoint-pro.git
cd timepoint-pro
pip install -r requirements.txt
export OPENROUTER_API_KEY=your_key
Expand Down
2 changes: 1 addition & 1 deletion e2e_workflows/e2e_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -3599,7 +3599,7 @@ def _upload_to_oxen(

try:
oxen_client = OxenClient(
namespace=os.getenv("OXEN_NAMESPACE", "timepoint-ai"),
namespace=os.getenv("OXEN_NAMESPACE", "timepointai"),
repo_name=repo_name,
interactive_auth=False,
)
Expand Down
4 changes: 2 additions & 2 deletions monitoring/llm_explainer.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def generate_explanation(
"https://openrouter.ai/api/v1/chat/completions",
headers={
"Authorization": f"Bearer {self.api_key}",
"HTTP-Referer": "https://github.com/timepoint-ai/timepoint-pro",
"HTTP-Referer": "https://github.com/timepointai/timepoint-pro",
"X-Title": "Timepoint Monitor",
},
json={
Expand Down Expand Up @@ -117,7 +117,7 @@ def generate_explanation_with_context(self, context: str) -> str | None:
"https://openrouter.ai/api/v1/chat/completions",
headers={
"Authorization": f"Bearer {self.api_key}",
"HTTP-Referer": "https://github.com/timepoint-ai/timepoint-pro",
"HTTP-Referer": "https://github.com/timepointai/timepoint-pro",
"X-Title": "Timepoint Monitor Chat",
},
json={
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ fastapi = "^0.118.0"
uvicorn = "^0.37.0"
slowapi = "^0.1.9"
sentence-transformers = "^3.0.0"
timepoint-tdf = {git = "https://github.com/timepoint-ai/timepoint-tdf.git", branch = "main"}
timepoint-tdf = {git = "https://github.com/timepointai/timepoint-tdf.git", branch = "main"}

[tool.poetry.group.dev.dependencies]
# Testing
Expand Down
Loading