langroid 0.1.231__tar.gz → 0.1.233__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {langroid-0.1.231 → langroid-0.1.233}/PKG-INFO +1 -1
- {langroid-0.1.231 → langroid-0.1.233}/langroid/agent/batch.py +8 -1
- {langroid-0.1.231 → langroid-0.1.233}/langroid/agent/special/doc_chat_agent.py +10 -3
- {langroid-0.1.231 → langroid-0.1.233}/langroid/agent/task.py +20 -2
- {langroid-0.1.231 → langroid-0.1.233}/pyproject.toml +1 -1
- {langroid-0.1.231 → langroid-0.1.233}/LICENSE +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/README.md +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/__init__.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/agent/__init__.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/agent/base.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/agent/callbacks/__init__.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/agent/callbacks/chainlit.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/agent/chat_agent.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/agent/chat_document.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/agent/helpers.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/agent/junk +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/agent/openai_assistant.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/agent/special/__init__.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/agent/special/lance_doc_chat_agent.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/agent/special/lance_rag/__init__.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/agent/special/lance_rag/critic_agent.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/agent/special/lance_rag/lance_rag_task.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/agent/special/lance_rag/query_planner_agent.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/agent/special/lance_tools.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/agent/special/neo4j/__init__.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/agent/special/neo4j/csv_kg_chat.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/agent/special/neo4j/neo4j_chat_agent.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/agent/special/neo4j/utils/__init__.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/agent/special/neo4j/utils/system_message.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/agent/special/relevance_extractor_agent.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/agent/special/retriever_agent.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/agent/special/sql/__init__.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/agent/special/sql/sql_chat_agent.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/agent/special/sql/utils/__init__.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/agent/special/sql/utils/description_extractors.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/agent/special/sql/utils/populate_metadata.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/agent/special/sql/utils/system_message.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/agent/special/sql/utils/tools.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/agent/special/table_chat_agent.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/agent/tool_message.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/agent/tools/__init__.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/agent/tools/duckduckgo_search_tool.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/agent/tools/extract_tool.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/agent/tools/generator_tool.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/agent/tools/google_search_tool.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/agent/tools/metaphor_search_tool.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/agent/tools/recipient_tool.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/agent/tools/run_python_code.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/agent/tools/segment_extract_tool.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/agent_config.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/cachedb/__init__.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/cachedb/base.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/cachedb/momento_cachedb.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/cachedb/redis_cachedb.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/embedding_models/__init__.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/embedding_models/base.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/embedding_models/clustering.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/embedding_models/models.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/embedding_models/protoc/embeddings.proto +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/embedding_models/protoc/embeddings_pb2.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/embedding_models/protoc/embeddings_pb2.pyi +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/embedding_models/protoc/embeddings_pb2_grpc.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/embedding_models/remote_embeds.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/language_models/__init__.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/language_models/azure_openai.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/language_models/base.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/language_models/config.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/language_models/openai_assistants.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/language_models/openai_gpt.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/language_models/prompt_formatter/__init__.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/language_models/prompt_formatter/base.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/language_models/prompt_formatter/hf_formatter.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/language_models/prompt_formatter/llama2_formatter.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/language_models/utils.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/mytypes.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/parsing/__init__.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/parsing/agent_chats.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/parsing/code-parsing.md +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/parsing/code_parser.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/parsing/config.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/parsing/document_parser.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/parsing/image_text.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/parsing/para_sentence_split.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/parsing/parse_json.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/parsing/parser.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/parsing/repo_loader.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/parsing/search.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/parsing/spider.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/parsing/table_loader.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/parsing/url_loader.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/parsing/url_loader_cookies.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/parsing/urls.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/parsing/utils.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/parsing/web_search.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/prompts/__init__.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/prompts/chat-gpt4-system-prompt.md +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/prompts/dialog.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/prompts/prompts_config.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/prompts/templates.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/prompts/transforms.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/utils/__init__.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/utils/algorithms/__init__.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/utils/algorithms/graph.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/utils/configuration.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/utils/constants.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/utils/docker.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/utils/globals.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/utils/llms/__init__.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/utils/llms/strings.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/utils/logging.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/utils/output/__init__.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/utils/output/printing.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/utils/output/status.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/utils/pandas_utils.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/utils/pydantic_utils.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/utils/system.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/utils/web/__init__.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/utils/web/login.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/vector_store/__init__.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/vector_store/base.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/vector_store/chromadb.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/vector_store/lancedb.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/vector_store/meilisearch.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/vector_store/momento.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/vector_store/qdrant_cloud.py +0 -0
- {langroid-0.1.231 → langroid-0.1.233}/langroid/vector_store/qdrantdb.py +0 -0
@@ -32,6 +32,7 @@ def run_batch_task_gen(
|
|
32
32
|
message: Optional[str] = None,
|
33
33
|
handle_exceptions: bool = False,
|
34
34
|
max_cost: float = 0.0,
|
35
|
+
max_tokens: int = 0,
|
35
36
|
) -> list[U]:
|
36
37
|
"""
|
37
38
|
Generate and run copies of a task async/concurrently one per item in `items` list.
|
@@ -53,6 +54,7 @@ def run_batch_task_gen(
|
|
53
54
|
handle_exceptions: bool: Whether to replace exceptions with outputs of None
|
54
55
|
max_cost: float: maximum cost to run the task (default 0.0 for unlimited)
|
55
56
|
|
57
|
+
|
56
58
|
Returns:
|
57
59
|
list[Any]: list of final results
|
58
60
|
"""
|
@@ -64,7 +66,9 @@ def run_batch_task_gen(
|
|
64
66
|
task_i.agent.llm.set_stream(False)
|
65
67
|
task_i.agent.config.show_stats = False
|
66
68
|
|
67
|
-
result = await task_i.run_async(
|
69
|
+
result = await task_i.run_async(
|
70
|
+
input, turns=turns, max_cost=max_cost, max_tokens=max_tokens
|
71
|
+
)
|
68
72
|
return result
|
69
73
|
|
70
74
|
async def _do_all(
|
@@ -123,6 +127,7 @@ def run_batch_tasks(
|
|
123
127
|
batch_size: Optional[int] = None,
|
124
128
|
turns: int = -1,
|
125
129
|
max_cost: float = 0.0,
|
130
|
+
max_tokens: int = 0,
|
126
131
|
) -> List[U]:
|
127
132
|
"""
|
128
133
|
Run copies of `task` async/concurrently one per item in `items` list.
|
@@ -141,6 +146,7 @@ def run_batch_tasks(
|
|
141
146
|
if None, unbatched
|
142
147
|
turns (int): number of turns to run, -1 for infinite
|
143
148
|
max_cost: float: maximum cost to run the task (default 0.0 for unlimited)
|
149
|
+
max_tokens: int: maximum token usage (in and out) (default 0 for unlimited)
|
144
150
|
|
145
151
|
Returns:
|
146
152
|
list[Any]: list of final results
|
@@ -156,6 +162,7 @@ def run_batch_tasks(
|
|
156
162
|
turns,
|
157
163
|
message,
|
158
164
|
max_cost=max_cost,
|
165
|
+
max_tokens=max_tokens,
|
159
166
|
)
|
160
167
|
|
161
168
|
|
@@ -117,6 +117,7 @@ class DocChatAgentConfig(ChatAgentConfig):
|
|
117
117
|
)
|
118
118
|
rerank_diversity: bool = True # rerank to maximize diversity?
|
119
119
|
rerank_periphery: bool = True # rerank to avoid Lost In the Middle effect?
|
120
|
+
rerank_after_adding_context: bool = True # rerank after adding context window?
|
120
121
|
embed_batch_size: int = 500 # get embedding of at most this many at a time
|
121
122
|
cache: bool = True # cache results
|
122
123
|
debug: bool = False
|
@@ -1110,9 +1111,10 @@ class DocChatAgent(ChatAgent):
|
|
1110
1111
|
if len(passages) == 0:
|
1111
1112
|
return []
|
1112
1113
|
|
1113
|
-
|
1114
|
-
|
1115
|
-
|
1114
|
+
if self.config.rerank_after_adding_context:
|
1115
|
+
passages_scores = [(p, 0.0) for p in passages]
|
1116
|
+
passages_scores = self.add_context_window(passages_scores)
|
1117
|
+
passages = [p for p, _ in passages_scores]
|
1116
1118
|
# now passages can potentially have a lot of doc chunks,
|
1117
1119
|
# so we re-rank them using a cross-encoder scoring model,
|
1118
1120
|
# and pick top k where k = config.parsing.n_similar_docs
|
@@ -1129,6 +1131,11 @@ class DocChatAgent(ChatAgent):
|
|
1129
1131
|
# (see Lost In the Middle issue).
|
1130
1132
|
passages = self.rerank_to_periphery(passages)
|
1131
1133
|
|
1134
|
+
if not self.config.rerank_after_adding_context:
|
1135
|
+
passages_scores = [(p, 0.0) for p in passages]
|
1136
|
+
passages_scores = self.add_context_window(passages_scores)
|
1137
|
+
passages = [p for p, _ in passages_scores]
|
1138
|
+
|
1132
1139
|
return passages
|
1133
1140
|
|
1134
1141
|
@no_type_check
|
@@ -171,6 +171,7 @@ class Task:
|
|
171
171
|
if user_message:
|
172
172
|
agent.set_user_message(user_message)
|
173
173
|
self.max_cost: float = 0
|
174
|
+
self.max_tokens: int = 0
|
174
175
|
self.logger: None | RichFileLogger = None
|
175
176
|
self.tsv_logger: None | logging.Logger = None
|
176
177
|
self.color_log: bool = False if settings.notebook else True
|
@@ -376,12 +377,14 @@ class Task:
|
|
376
377
|
turns: int = -1,
|
377
378
|
caller: None | Task = None,
|
378
379
|
max_cost: float = 0,
|
380
|
+
max_tokens: int = 0,
|
379
381
|
) -> Optional[ChatDocument]:
|
380
382
|
"""Synchronous version of `run_async()`.
|
381
383
|
See `run_async()` for details."""
|
382
384
|
self.task_progress = False
|
383
385
|
self.n_stalled_steps = 0
|
384
386
|
self.max_cost = max_cost
|
387
|
+
self.max_tokens = max_tokens
|
385
388
|
assert (
|
386
389
|
msg is None or isinstance(msg, str) or isinstance(msg, ChatDocument)
|
387
390
|
), f"msg arg in Task.run() must be None, str, or ChatDocument, not {type(msg)}"
|
@@ -421,6 +424,7 @@ class Task:
|
|
421
424
|
turns: int = -1,
|
422
425
|
caller: None | Task = None,
|
423
426
|
max_cost: float = 0,
|
427
|
+
max_tokens: int = 0,
|
424
428
|
) -> Optional[ChatDocument]:
|
425
429
|
"""
|
426
430
|
Loop over `step()` until task is considered done or `turns` is reached.
|
@@ -437,7 +441,8 @@ class Task:
|
|
437
441
|
turns (int): number of turns to run the task for;
|
438
442
|
default is -1, which means run until task is done.
|
439
443
|
caller (Task|None): the calling task, if any
|
440
|
-
max_cost (float):
|
444
|
+
max_cost (float): max cost allowed for the task (default 0 -> no limit)
|
445
|
+
max_tokens (int): max tokens allowed for the task (default 0 -> no limit)
|
441
446
|
|
442
447
|
Returns:
|
443
448
|
Optional[ChatDocument]: valid result of the task.
|
@@ -450,6 +455,7 @@ class Task:
|
|
450
455
|
self.task_progress = False
|
451
456
|
self.n_stalled_steps = 0
|
452
457
|
self.max_cost = max_cost
|
458
|
+
self.max_tokens = max_tokens
|
453
459
|
if (
|
454
460
|
isinstance(msg, ChatDocument)
|
455
461
|
and msg.metadata.recipient != ""
|
@@ -826,6 +832,7 @@ class Task:
|
|
826
832
|
turns=actual_turns,
|
827
833
|
caller=self,
|
828
834
|
max_cost=self.max_cost,
|
835
|
+
max_tokens=self.max_tokens,
|
829
836
|
)
|
830
837
|
result_str = str(ChatDocument.to_LLMMessage(result))
|
831
838
|
maybe_tool = len(extract_top_level_json(result_str)) > 0
|
@@ -901,6 +908,8 @@ class Task:
|
|
901
908
|
self.pending_message,
|
902
909
|
turns=actual_turns,
|
903
910
|
caller=self,
|
911
|
+
max_cost=self.max_cost,
|
912
|
+
max_tokens=self.max_tokens,
|
904
913
|
)
|
905
914
|
result_str = str(ChatDocument.to_LLMMessage(result))
|
906
915
|
maybe_tool = len(extract_top_level_json(result_str)) > 0
|
@@ -1062,12 +1071,21 @@ class Task:
|
|
1062
1071
|
try:
|
1063
1072
|
if self.agent.llm.tot_tokens_cost()[1] > self.max_cost:
|
1064
1073
|
logger.warning(
|
1065
|
-
f"Task {self.name} exceeded
|
1074
|
+
f"Task {self.name} cost exceeded {self.max_cost}; exiting."
|
1066
1075
|
)
|
1067
1076
|
return True
|
1068
1077
|
except Exception:
|
1069
1078
|
pass
|
1070
1079
|
|
1080
|
+
if self.max_tokens > 0 and self.agent.llm is not None:
|
1081
|
+
try:
|
1082
|
+
if self.agent.llm.tot_tokens_cost()[0] > self.max_tokens:
|
1083
|
+
logger.warning(
|
1084
|
+
f"Task {self.name} uses > {self.max_tokens} tokens; exiting."
|
1085
|
+
)
|
1086
|
+
return True
|
1087
|
+
except Exception:
|
1088
|
+
pass
|
1071
1089
|
return (
|
1072
1090
|
# no valid response from any entity/agent in current turn
|
1073
1091
|
result is None
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{langroid-0.1.231 → langroid-0.1.233}/langroid/agent/special/lance_rag/query_planner_agent.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{langroid-0.1.231 → langroid-0.1.233}/langroid/agent/special/sql/utils/description_extractors.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{langroid-0.1.231 → langroid-0.1.233}/langroid/embedding_models/protoc/embeddings_pb2_grpc.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{langroid-0.1.231 → langroid-0.1.233}/langroid/language_models/prompt_formatter/hf_formatter.py
RENAMED
File without changes
|
{langroid-0.1.231 → langroid-0.1.233}/langroid/language_models/prompt_formatter/llama2_formatter.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|