Skip to content

Commit

Permalink
Data scoring and formatting, minor lint tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
NotBioWaste905 committed Jan 13, 2025
1 parent bd6090f commit 92ade8e
Show file tree
Hide file tree
Showing 11 changed files with 8,122 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def invoke(self, graph: BaseGraph, start_node: int = 1, end_node: int = -1, topi

return all_dialogues

async def ainvoke(self, *args, **kwargs):
async def ainvoke(self, *args, **kwargs):
return self.invoke(*args, **kwargs)


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
This module contains functions that checks Graphs and Dialogues for various metrics using LLM calls.
"""

import logging
import json
from chatsky_llm_autoconfig.graph import BaseGraph, Graph
from langchain_core.language_models.chat_models import BaseChatModel
from langchain.prompts import PromptTemplate
from pydantic import BaseModel, Field
from langchain_core.output_parsers import PydanticOutputParser
import logging
import json

# Set up logging
logging.basicConfig(level=logging.INFO)
Expand Down
2 changes: 1 addition & 1 deletion experiments/2024.12.11_visualization/main.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.12.3"
"version": "3.11.11"
}
},
"nbformat": 4,
Expand Down
Loading

0 comments on commit 92ade8e

Please sign in to comment.