typeagent-py 0.1.1__tar.gz → 0.1.3__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.
Files changed (103) hide show
  1. {typeagent_py-0.1.1/typeagent_py.egg-info → typeagent_py-0.1.3}/PKG-INFO +1 -1
  2. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/pyproject.toml +1 -1
  3. {typeagent_py-0.1.1 → typeagent_py-0.1.3/typeagent_py.egg-info}/PKG-INFO +1 -1
  4. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typechat/__about__.py +3 -0
  5. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typechat/__init__.py +3 -0
  6. typeagent_py-0.1.3/typechat/_internal/__init__.py +2 -0
  7. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typechat/_internal/interactive.py +3 -0
  8. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typechat/_internal/model.py +3 -0
  9. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typechat/_internal/result.py +3 -0
  10. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typechat/_internal/translator.py +3 -0
  11. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typechat/_internal/ts_conversion/__init__.py +3 -0
  12. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typechat/_internal/ts_conversion/python_type_to_ts_nodes.py +3 -0
  13. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typechat/_internal/ts_conversion/ts_node_to_string.py +3 -0
  14. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typechat/_internal/ts_conversion/ts_type_nodes.py +3 -0
  15. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typechat/_internal/validator.py +3 -0
  16. typeagent_py-0.1.1/typechat/_internal/__init__.py +0 -0
  17. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/LICENSE +0 -0
  18. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/README.md +0 -0
  19. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/setup.cfg +0 -0
  20. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/test/test_auth.py +0 -0
  21. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/test/test_collections.py +0 -0
  22. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/test/test_conversation_metadata.py +0 -0
  23. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/test/test_demo.py +0 -0
  24. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/test/test_embeddings.py +0 -0
  25. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/test/test_interfaces.py +0 -0
  26. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/test/test_knowledge.py +0 -0
  27. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/test/test_kplib.py +0 -0
  28. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/test/test_message_text_index_population.py +0 -0
  29. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/test/test_message_text_index_serialization.py +0 -0
  30. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/test/test_messageindex.py +0 -0
  31. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/test/test_podcasts.py +0 -0
  32. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/test/test_property_index_population.py +0 -0
  33. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/test/test_propindex.py +0 -0
  34. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/test/test_query.py +0 -0
  35. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/test/test_related_terms_fast.py +0 -0
  36. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/test/test_related_terms_index_population.py +0 -0
  37. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/test/test_reltermsindex.py +0 -0
  38. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/test/test_searchlib.py +0 -0
  39. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/test/test_secindex.py +0 -0
  40. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/test/test_secindex_storage_integration.py +0 -0
  41. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/test/test_semrefindex.py +0 -0
  42. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/test/test_serialization.py +0 -0
  43. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/test/test_sqlite_indexes.py +0 -0
  44. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/test/test_sqlitestore.py +0 -0
  45. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/test/test_storage_providers_unified.py +0 -0
  46. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/test/test_timestampindex.py +0 -0
  47. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/test/test_utils.py +0 -0
  48. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/test/test_vectorbase.py +0 -0
  49. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/aitools/auth.py +0 -0
  50. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/aitools/embeddings.py +0 -0
  51. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/aitools/utils.py +0 -0
  52. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/aitools/vectorbase.py +0 -0
  53. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/knowpro/answer_context_schema.py +0 -0
  54. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/knowpro/answer_response_schema.py +0 -0
  55. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/knowpro/answers.py +0 -0
  56. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/knowpro/collections.py +0 -0
  57. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/knowpro/common.py +0 -0
  58. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/knowpro/convknowledge.py +0 -0
  59. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/knowpro/convsettings.py +0 -0
  60. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/knowpro/convutils.py +0 -0
  61. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/knowpro/date_time_schema.py +0 -0
  62. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/knowpro/field_helpers.py +0 -0
  63. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/knowpro/fuzzyindex.py +0 -0
  64. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/knowpro/interfaces.py +0 -0
  65. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/knowpro/knowledge.py +0 -0
  66. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/knowpro/kplib.py +0 -0
  67. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/knowpro/query.py +0 -0
  68. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/knowpro/search.py +0 -0
  69. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/knowpro/search_query_schema.py +0 -0
  70. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/knowpro/searchlang.py +0 -0
  71. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/knowpro/searchlib.py +0 -0
  72. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/knowpro/secindex.py +0 -0
  73. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/knowpro/serialization.py +0 -0
  74. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/knowpro/textlocindex.py +0 -0
  75. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/knowpro/utils.py +0 -0
  76. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/mcp/server.py +0 -0
  77. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/podcasts/podcast.py +0 -0
  78. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/podcasts/podcast_import.py +0 -0
  79. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/storage/__init__.py +0 -0
  80. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/storage/memory/__init__.py +0 -0
  81. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/storage/memory/collections.py +0 -0
  82. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/storage/memory/convthreads.py +0 -0
  83. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/storage/memory/messageindex.py +0 -0
  84. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/storage/memory/propindex.py +0 -0
  85. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/storage/memory/provider.py +0 -0
  86. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/storage/memory/reltermsindex.py +0 -0
  87. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/storage/memory/semrefindex.py +0 -0
  88. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/storage/memory/timestampindex.py +0 -0
  89. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/storage/sqlite/__init__.py +0 -0
  90. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/storage/sqlite/collections.py +0 -0
  91. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/storage/sqlite/messageindex.py +0 -0
  92. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/storage/sqlite/propindex.py +0 -0
  93. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/storage/sqlite/provider.py +0 -0
  94. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/storage/sqlite/reltermsindex.py +0 -0
  95. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/storage/sqlite/schema.py +0 -0
  96. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/storage/sqlite/semrefindex.py +0 -0
  97. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/storage/sqlite/timestampindex.py +0 -0
  98. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent/storage/utils.py +0 -0
  99. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent_py.egg-info/SOURCES.txt +0 -0
  100. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent_py.egg-info/dependency_links.txt +0 -0
  101. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent_py.egg-info/requires.txt +0 -0
  102. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typeagent_py.egg-info/top_level.txt +0 -0
  103. {typeagent_py-0.1.1 → typeagent_py-0.1.3}/typechat/py.typed +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: typeagent-py
3
- Version: 0.1.1
3
+ Version: 0.1.3
4
4
  Summary: TypeAgent implements an agentic memory framework.
5
5
  Author: Steven Lucco, Umesh Madan, Guido van Rossum
6
6
  Author-email: Guido van Rossum <gvanrossum@microsoft.com>
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "typeagent-py"
7
- version = "0.1.1"
7
+ version = "0.1.3"
8
8
  description = "TypeAgent implements an agentic memory framework."
9
9
  authors = [
10
10
  { name = "Guido van Rossum", email = "gvanrossum@microsoft.com" },
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: typeagent-py
3
- Version: 0.1.1
3
+ Version: 0.1.3
4
4
  Summary: TypeAgent implements an agentic memory framework.
5
5
  Author: Steven Lucco, Umesh Madan, Guido van Rossum
6
6
  Author-email: Guido van Rossum <gvanrossum@microsoft.com>
@@ -1,3 +1,6 @@
1
+ # Copyright (c) Microsoft Corporation.
2
+ # Licensed under the MIT License.
3
+
1
4
  # SPDX-FileCopyrightText: Microsoft Corporation
2
5
  #
3
6
  # SPDX-License-Identifier: MIT
@@ -1,3 +1,6 @@
1
+ # Copyright (c) Microsoft Corporation.
2
+ # Licensed under the MIT License.
3
+
1
4
  # SPDX-FileCopyrightText: Microsoft Corporation
2
5
  #
3
6
  # SPDX-License-Identifier: MIT
@@ -0,0 +1,2 @@
1
+ # Copyright (c) Microsoft Corporation.
2
+ # Licensed under the MIT License.
@@ -1,3 +1,6 @@
1
+ # Copyright (c) Microsoft Corporation.
2
+ # Licensed under the MIT License.
3
+
1
4
  from typing import Callable, Awaitable
2
5
 
3
6
  async def process_requests(interactive_prompt: str, input_file_name: str | None, process_request: Callable[[str], Awaitable[None]]):
@@ -1,3 +1,6 @@
1
+ # Copyright (c) Microsoft Corporation.
2
+ # Licensed under the MIT License.
3
+
1
4
  import asyncio
2
5
  from types import TracebackType
3
6
  from typing_extensions import AsyncContextManager, Literal, Protocol, Self, TypedDict, cast, override
@@ -1,3 +1,6 @@
1
+ # Copyright (c) Microsoft Corporation.
2
+ # Licensed under the MIT License.
3
+
1
4
  from dataclasses import dataclass
2
5
  from typing_extensions import Generic, TypeAlias, TypeVar
3
6
 
@@ -1,3 +1,6 @@
1
+ # Copyright (c) Microsoft Corporation.
2
+ # Licensed under the MIT License.
3
+
1
4
  from typing_extensions import Generic, TypeVar
2
5
 
3
6
  import pydantic_core
@@ -1,3 +1,6 @@
1
+ # Copyright (c) Microsoft Corporation.
2
+ # Licensed under the MIT License.
3
+
1
4
  from dataclasses import dataclass
2
5
  from typing_extensions import TypeAliasType
3
6
 
@@ -1,3 +1,6 @@
1
+ # Copyright (c) Microsoft Corporation.
2
+ # Licensed under the MIT License.
3
+
1
4
  from __future__ import annotations
2
5
 
3
6
  from collections import OrderedDict
@@ -1,3 +1,6 @@
1
+ # Copyright (c) Microsoft Corporation.
2
+ # Licensed under the MIT License.
3
+
1
4
  import json
2
5
  from typing_extensions import assert_never
3
6
 
@@ -1,3 +1,6 @@
1
+ # Copyright (c) Microsoft Corporation.
2
+ # Licensed under the MIT License.
3
+
1
4
  from __future__ import annotations
2
5
 
3
6
  from dataclasses import dataclass
@@ -1,3 +1,6 @@
1
+ # Copyright (c) Microsoft Corporation.
2
+ # Licensed under the MIT License.
3
+
1
4
  import json
2
5
  from typing_extensions import Generic, TypeVar
3
6
 
File without changes
File without changes
File without changes
File without changes