Skip to content

Commit 2dc2aa3

Browse files
committed
fixes
1 parent 81f212c commit 2dc2aa3

File tree

54 files changed

+66
-66
lines changed

Some content is hidden

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

54 files changed

+66
-66
lines changed

CLAUDE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
44

55
## Project Overview
66

7-
OptILLM is an OpenAI API compatible optimizing inference proxy that implements state-of-the-art techniques to improve accuracy and performance of LLMs. It focuses on reasoning improvements for coding, logical, and mathematical queries through inference-time compute optimization.
7+
OptiLLM is an OpenAI API compatible optimizing inference proxy that implements state-of-the-art techniques to improve accuracy and performance of LLMs. It focuses on reasoning improvements for coding, logical, and mathematical queries through inference-time compute optimization.
88

99
## Core Architecture
1010

@@ -95,7 +95,7 @@ python scripts/eval_arena_hard_auto_rtc.py
9595
# FRAMES benchmark
9696
python scripts/eval_frames_benchmark.py
9797

98-
# OptILLM benchmark generation/evaluation
98+
# OptiLLM benchmark generation/evaluation
9999
python scripts/gen_optillmbench.py
100100
python scripts/eval_optillmbench.py
101101
```

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -641,7 +641,7 @@ called patchflows. We saw huge performance gains across all the supported patchf
641641

642642
## Testing
643643

644-
OptILLM includes a comprehensive test suite to ensure reliability and compatibility.
644+
OptiLLM includes a comprehensive test suite to ensure reliability and compatibility.
645645

646646
### Running Tests
647647

optillm/deepconf/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Based on the paper "Deep Think with Confidence" by Fu et al. (2024), DeepConf im
1414

1515
## Features
1616

17-
-**Local models only** - Works with OptILLM's local inference engine
17+
-**Local models only** - Works with OptiLLM's local inference engine
1818
-**Two variants**: `low` (aggressive, top 10%) and `high` (conservative, top 90%)
1919
-**Configurable parameters** for different use cases
2020
-**Early termination** to reduce token usage by 50-70%
@@ -24,7 +24,7 @@ Based on the paper "Deep Think with Confidence" by Fu et al. (2024), DeepConf im
2424

2525
### Basic Usage
2626

27-
Set up OptILLM for local inference:
27+
Set up OptiLLM for local inference:
2828

2929
```bash
3030
export OPTILLM_API_KEY=optillm
@@ -120,7 +120,7 @@ DeepConf typically achieves:
120120
## Requirements
121121

122122
- Local model inference (PyTorch)
123-
- OptILLM with `OPTILLM_API_KEY=optillm`
123+
- OptiLLM with `OPTILLM_API_KEY=optillm`
124124
- Compatible with transformer models that provide logits access
125125

126126
## Limitations

optillm/plugins/deep_research/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ deep_research/
2222
├── research_engine.py # Core TTD-DR implementation
2323
└── README.md # This documentation
2424
25-
../deep_research_plugin.py # OptILLM plugin interface
25+
../deep_research_plugin.py # OptiLLM plugin interface
2626
```
2727

2828
### Key Components
@@ -41,7 +41,7 @@ The core implementation of the TTD-DR algorithm with the following key methods:
4141

4242
#### 2. Plugin Interface (`deep_research_plugin.py`)
4343

44-
Minimal interface that integrates with OptILLM's plugin system:
44+
Minimal interface that integrates with OptiLLM's plugin system:
4545

4646
```python
4747
def run(system_prompt: str, initial_query: str, client, model: str, request_config: Optional[Dict] = None) -> Tuple[str, int]
@@ -101,7 +101,7 @@ request_config = {
101101

102102
## Dependencies
103103

104-
The Deep Research plugin requires these OptILLM plugins:
104+
The Deep Research plugin requires these OptiLLM plugins:
105105

106106
- **`web_search`** - Chrome-based Google search automation
107107
- **`readurls`** - Content extraction from URLs
@@ -137,7 +137,7 @@ result, tokens = run(
137137
)
138138
```
139139

140-
### With OptILLM Server
140+
### With OptiLLM Server
141141

142142
```python
143143
from openai import OpenAI

optillm/plugins/deep_research/sample_reports/01_evaluate_the_potential_consequences_of_tiktok_bans.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,4 +197,4 @@ By embracing these strategies, companies can mitigate investment risks associate
197197
[50] TikTok vs. Reels vs. Shorts (A Study by Socialinsider). Available at: https://www.socialinsider.io/blog/tiktok-vs-reels-vs-shorts?ref=blog-cms.socialinsider.io [Accessed: 2025-07-25]
198198

199199
---
200-
*Generated using [OptILLM Deep Research](https://github.com/codelion/optillm) with TTD-DR (Test-Time Diffusion Deep Researcher)*
200+
*Generated using [OptiLLM Deep Research](https://github.com/codelion/optillm) with TTD-DR (Test-Time Diffusion Deep Researcher)*

optillm/plugins/deep_research/sample_reports/02_chart_the_developing_landscape_of_ai_agents_and_co.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,4 +119,4 @@ The landscape of AI agents and their supporting technologies is exceptionally dy
119119
[12] Reinforcement Learning: Applications in Gaming, Robotics .... Available at: https://www.researchgate.net/publication/390582934_Reinforcement_Learning_Applications_in_Gaming_Robotics_and_Real-World_Decision-Making#:~:text=Applications%20include%20robotic%20manipulation%2C%20autonomous,%2Dworld%20decision%2Dmaking%20processes. [Accessed: 2025-07-25]
120120

121121
---
122-
*Generated using [OptILLM Deep Research](https://github.com/codelion/optillm) with TTD-DR (Test-Time Diffusion Deep Researcher)*
122+
*Generated using [OptiLLM Deep Research](https://github.com/codelion/optillm) with TTD-DR (Test-Time Diffusion Deep Researcher)*

optillm/plugins/deep_research/sample_reports/03_analyze_the_dynamic_terrain_of_unbanked_market_acc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,4 +147,4 @@ The "Unbanked Market Access" represents a complex yet highly promising domain. S
147147
[25] The Role of Regulatory Sandboxes in FinTech Innovation. Available at: https://www.mdpi.com/2674-1032/4/2/26 [Accessed: 2025-07-25]
148148

149149
---
150-
*Generated using [OptILLM Deep Research](https://github.com/codelion/optillm) with TTD-DR (Test-Time Diffusion Deep Researcher)*
150+
*Generated using [OptiLLM Deep Research](https://github.com/codelion/optillm) with TTD-DR (Test-Time Diffusion Deep Researcher)*

optillm/plugins/deep_research/sample_reports/04_examine_kkrs_tech_centric_transactions_and_their_a.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,4 +154,4 @@ KKR has established a well-defined and evolving strategy for investing in and ge
154154
[20] Tech Growth. Available at: https://www.kkr.com/invest/private-equity/tech-growth [Accessed: 2025-07-25]
155155

156156
---
157-
*Generated using [OptILLM Deep Research](https://github.com/codelion/optillm) with TTD-DR (Test-Time Diffusion Deep Researcher)*
157+
*Generated using [OptiLLM Deep Research](https://github.com/codelion/optillm) with TTD-DR (Test-Time Diffusion Deep Researcher)*

optillm/plugins/deep_research/sample_reports/05_break_down_khosla_ventures_portfolio_into_cutting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,4 +123,4 @@ Khosla Ventures has firmly established itself as a significant force in the vent
123123
[16] Portfolio. Available at: https://www.khoslaventures.com/portfolio/ [Accessed: 2025-07-25]
124124

125125
---
126-
*Generated using [OptILLM Deep Research](https://github.com/codelion/optillm) with TTD-DR (Test-Time Diffusion Deep Researcher)*
126+
*Generated using [OptiLLM Deep Research](https://github.com/codelion/optillm) with TTD-DR (Test-Time Diffusion Deep Researcher)*

optillm/plugins/deep_research/sample_reports/06_evaluate_the_commercial_rationale_for_participatin.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,4 +304,4 @@ SSRN. (n.d.). [Relevant paper on machine learning for house price prediction]. R
304304
[52] Many first-time homebuyers are pushing 40 as millennials .... Available at: https://www.nbcnews.com/business/real-estate/many-first-time-homebuyers-are-pushing-40-millennials-wait-vain-better-rcna201786 [Accessed: 2025-07-25]
305305

306306
---
307-
*Generated using [OptILLM Deep Research](https://github.com/codelion/optillm) with TTD-DR (Test-Time Diffusion Deep Researcher)*
307+
*Generated using [OptiLLM Deep Research](https://github.com/codelion/optillm) with TTD-DR (Test-Time Diffusion Deep Researcher)*

0 commit comments

Comments
 (0)