Skip to content

Commit 1de9b4b

Browse files
committed
nomenclature
1 parent 22f8faf commit 1de9b4b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ pip install -r requirements.txt
4747

4848
## Environment Setup
4949

50-
Osmosis Wrap requires a OSMOSIS API key to log LLM usage. Create a `.env` file in your project directory:
50+
osmosisrequires a OSMOSIS API key to log LLM usage. Create a `.env` file in your project directory:
5151

5252
```bash
5353
# Copy the sample .env file
@@ -69,7 +69,7 @@ OPENAI_API_KEY=your_openai_key_here
6969

7070
## Usage
7171

72-
First, import and initialize Osmosis Wrap with your OSMOSIS API key:
72+
First, import and initialize osmosiswith your OSMOSIS API key:
7373

7474
```python
7575
import os

examples/EXAMPLES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Osmosis Wrap Examples
1+
# osmosisExamples
22

33
This directory contains example code demonstrating how to use osmosis-ai with various LLM libraries.
44

osmosis_ai/utils.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Utility functions for Osmosis Wrap adapters
2+
Utility functions for osmosisadapters
33
"""
44

55
import json
@@ -18,7 +18,7 @@
1818

1919
def init(api_key: str) -> None:
2020
"""
21-
Initialize Osmosis Wrap with the OSMOSIS API key.
21+
Initialize osmosiswith the OSMOSIS API key.
2222
2323
Args:
2424
api_key: The OSMOSIS API key for logging LLM usage
@@ -48,7 +48,7 @@ def send_to_osmosis(query: Dict[str, Any], response: Dict[str, Any], status: int
4848
return
4949

5050
if not _initialized:
51-
logger.warning("Osmosis Wrap not initialized. Call osmosis_ai.init(api_key) first.")
51+
logger.warning("osmosisnot initialized. Call osmosis_ai.init(api_key) first.")
5252
return
5353

5454
try:

0 commit comments

Comments
 (0)