oskaragent 0.1.38a0__py3-none-any.whl

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.
oskaragent/__init__.py ADDED
@@ -0,0 +1,49 @@
1
+ """oskaragent agent package.
2
+
3
+ Exports:
4
+ - `oskaragent`: main agent class
5
+ - `AgentConfig`: configuration class for the agent
6
+ - Tool utilities and contexts from `.agent_tools` for convenience
7
+ """
8
+
9
+ from __future__ import annotations
10
+
11
+ from .agent import Oskar
12
+ from .agent_config import AgentConfig
13
+ from .converters import (
14
+ convert_csv_to_markdown_table,
15
+ convert_docx_to_markdown,
16
+ convert_pptx_to_markdown,
17
+ convert_markdown_to_html,
18
+ convert_markdown_to_html_block,
19
+ convert_markdown_to_pdf,
20
+ convert_pdf_to_markdown,
21
+ convert_dict_to_markdown,
22
+ convert_json_to_markdown,
23
+ convert_json_to_csv,
24
+
25
+ decode_file_from_str,
26
+ encode_file,
27
+ )
28
+
29
+
30
+ __all__ = [
31
+ "Oskar",
32
+ "AgentConfig",
33
+
34
+ # converters
35
+ "convert_csv_to_markdown_table",
36
+ "convert_dict_to_markdown",
37
+ "convert_docx_to_markdown",
38
+ "convert_markdown_to_html",
39
+ "convert_markdown_to_html_block",
40
+ "convert_markdown_to_pdf",
41
+ "convert_pdf_to_markdown",
42
+ "convert_pptx_to_markdown",
43
+ "convert_json_to_markdown",
44
+ "convert_json_to_csv",
45
+
46
+ # encoders
47
+ "decode_file_from_str",
48
+ "encode_file",
49
+ ]