Skip to content

Commit

Permalink
fix module naming
Browse files Browse the repository at this point in the history
  • Loading branch information
ngc436 committed Jan 28, 2025
1 parent 709c027 commit 1563f34
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -161,4 +161,5 @@ cython_debug/
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
.idea/

.env.test
.env.test
.DS_Store
3 changes: 3 additions & 0 deletions protollm-synthetic/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ Available pipelines:

## Installation

```bash
poetry install
```

## Usage

Expand Down
4 changes: 2 additions & 2 deletions protollm-synthetic/examples/aspect_summarisation_example.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from samplefactory.synthetic_pipelines.chains import AspectSummarisationChain
from samplefactory.utils import Dataset, VLLMChatOpenAI
from protollm_synthetic.synthetic_pipelines.chains import AspectSummarisationChain
from protollm_synthetic.utils import Dataset, VLLMChatOpenAI
import pandas as pd
import os
import asyncio
Expand Down
4 changes: 2 additions & 2 deletions protollm-synthetic/examples/synthetic_rag_query_example.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import logging
import os
from samplefactory.synthetic_pipelines.chains import RAGChain
from samplefactory.utils import Dataset, VLLMChatOpenAI
from protollm_synthetic.synthetic_pipelines.chains import RAGChain
from protollm_synthetic.utils import Dataset, VLLMChatOpenAI
import asyncio

logging.basicConfig(level=logging.INFO, format="%(asctime)s %(levelname)s %(message)s")
Expand Down

0 comments on commit 1563f34

Please sign in to comment.