LICENSE
MANIFEST.in
README.md
pyproject.toml
requirements-dev.txt
requirements.txt
setup.py
client_examples/__init__.py
client_examples/html/sse_test.html
client_examples/javascript/sse_client.js
client_examples/python/grpc_client.py
client_examples/python/sse_client.py
client_examples/python/websocket_client.py
config/development.yaml
config/docker.yaml
config/production.yaml
examples/__init__.py
examples/common_brick_define/grpc_client.py
examples/common_brick_define/grpc_server.py
examples/common_brick_define/local_use.py
examples/common_brick_define/my_brick.py
examples/compose_brick_define/grpc_client.py
examples/compose_brick_define/grpc_server.py
examples/compose_brick_define/local_use.py
examples/compose_brick_define/my_brick.py
examples/guard_brick_define/grpc_client.py
examples/guard_brick_define/grpc_server.py
examples/guard_brick_define/local_use.py
examples/guard_brick_define/my_brick.py
examples/intention_brick_define/grpc_client.py
examples/intention_brick_define/grpc_server.py
examples/intention_brick_define/local_use.py
examples/intention_brick_define/my_brick.py
examples/llm_brick_define/grpc_client.py
examples/llm_brick_define/grpc_server.py
examples/llm_brick_define/local_use.py
examples/llm_brick_define/my_brick.py
examples/openai_chatbot/grpc_server.py
examples/openai_chatbot/openai_chatbot.py
examples/rectify_brick_define/grpc_client.py
examples/rectify_brick_define/grpc_server.py
examples/rectify_brick_define/local_use.py
examples/rectify_brick_define/my_brick.py
examples/retrieval_brick_define/grpc_client.py
examples/retrieval_brick_define/grpc_server.py
examples/retrieval_brick_define/local_use.py
examples/retrieval_brick_define/my_brick.py
examples/simple_chatbot/grpc_client.py
examples/simple_chatbot/grpc_server.py
examples/simple_chatbot/local_use.py
examples/simple_chatbot/my_brick.py
examples/simple_chatbot/simple_chatbot.py
examples/simple_sse_server/server.py
examples/translate_brick_define/grpc_client.py
examples/translate_brick_define/grpc_server.py
examples/translate_brick_define/local_use.py
examples/translate_brick_define/my_brick.py
llmbrick/__init__.py
llmbrick/version.py
llmbrick.egg-info/PKG-INFO
llmbrick.egg-info/SOURCES.txt
llmbrick.egg-info/dependency_links.txt
llmbrick.egg-info/entry_points.txt
llmbrick.egg-info/not-zip-safe
llmbrick.egg-info/requires.txt
llmbrick.egg-info/top_level.txt
llmbrick/bricks/__init__.py
llmbrick/bricks/common/__init__.py
llmbrick/bricks/common/common.py
llmbrick/bricks/compose/__init__.py
llmbrick/bricks/compose/base_compose.py
llmbrick/bricks/guard/__init__.py
llmbrick/bricks/guard/base_guard.py
llmbrick/bricks/intention/__init__.py
llmbrick/bricks/intention/base_intention.py
llmbrick/bricks/llm/__init__.py
llmbrick/bricks/llm/base_llm.py
llmbrick/bricks/llm/openai_llm.py
llmbrick/bricks/rectify/__init__.py
llmbrick/bricks/rectify/base_rectify.py
llmbrick/bricks/retrieval/__init__.py
llmbrick/bricks/retrieval/base_retrieval.py
llmbrick/bricks/translate/__init__.py
llmbrick/bricks/translate/base_translate.py
llmbrick/core/__init__.py
llmbrick/core/brick.py
llmbrick/core/error_codes.py
llmbrick/core/exceptions.py
llmbrick/protocols/__init__.py
llmbrick/protocols/grpc/__init__.py
llmbrick/protocols/grpc/common/__init__.py
llmbrick/protocols/grpc/common/common.proto
llmbrick/protocols/grpc/common/common_pb2.py
llmbrick/protocols/grpc/common/common_pb2_grpc.py
llmbrick/protocols/grpc/compose/__init__.py
llmbrick/protocols/grpc/compose/compose.proto
llmbrick/protocols/grpc/compose/compose_pb2.py
llmbrick/protocols/grpc/compose/compose_pb2_grpc.py
llmbrick/protocols/grpc/guard/__init__.py
llmbrick/protocols/grpc/guard/guard.proto
llmbrick/protocols/grpc/guard/guard_pb2.py
llmbrick/protocols/grpc/guard/guard_pb2_grpc.py
llmbrick/protocols/grpc/intention/__init__.py
llmbrick/protocols/grpc/intention/intention.proto
llmbrick/protocols/grpc/intention/intention_pb2.py
llmbrick/protocols/grpc/intention/intention_pb2_grpc.py
llmbrick/protocols/grpc/llm/__init__.py
llmbrick/protocols/grpc/llm/llm.proto
llmbrick/protocols/grpc/llm/llm_pb2.py
llmbrick/protocols/grpc/llm/llm_pb2_grpc.py
llmbrick/protocols/grpc/rectify/__init__.py
llmbrick/protocols/grpc/rectify/rectify.proto
llmbrick/protocols/grpc/rectify/rectify_pb2.py
llmbrick/protocols/grpc/rectify/rectify_pb2_grpc.py
llmbrick/protocols/grpc/retrieval/__init__.py
llmbrick/protocols/grpc/retrieval/retrieval.proto
llmbrick/protocols/grpc/retrieval/retrieval_pb2.py
llmbrick/protocols/grpc/retrieval/retrieval_pb2_grpc.py
llmbrick/protocols/grpc/translate/__init__.py
llmbrick/protocols/grpc/translate/translate.proto
llmbrick/protocols/grpc/translate/translate_pb2.py
llmbrick/protocols/grpc/translate/translate_pb2_grpc.py
llmbrick/protocols/models/__init__.py
llmbrick/protocols/models/bricks/__init__.py
llmbrick/protocols/models/bricks/common_types.py
llmbrick/protocols/models/bricks/compose_types.py
llmbrick/protocols/models/bricks/guard_types.py
llmbrick/protocols/models/bricks/intention_types.py
llmbrick/protocols/models/bricks/llm_types.py
llmbrick/protocols/models/bricks/rectify_types.py
llmbrick/protocols/models/bricks/retrieval_types.py
llmbrick/protocols/models/bricks/translate_types.py
llmbrick/protocols/models/http/__init__.py
llmbrick/protocols/models/http/conversation.py
llmbrick/servers/__init__.py
llmbrick/servers/grpc/__init__.py
llmbrick/servers/grpc/server.py
llmbrick/servers/grpc/wrappers/__init__.py
llmbrick/servers/grpc/wrappers/common_grpc_wrapper.py
llmbrick/servers/grpc/wrappers/compose_grpc_wrapper.py
llmbrick/servers/grpc/wrappers/guard_grpc_wrapper.py
llmbrick/servers/grpc/wrappers/intention_grpc_wrapper.py
llmbrick/servers/grpc/wrappers/llm_grpc_wrapper.py
llmbrick/servers/grpc/wrappers/rectify_grpc_wrapper.py
llmbrick/servers/grpc/wrappers/retrieval_grpc_wrapper.py
llmbrick/servers/grpc/wrappers/translate_grpc_wrapper.py
llmbrick/servers/sse/__init__.py
llmbrick/servers/sse/config.py
llmbrick/servers/sse/server.py
llmbrick/servers/sse/validators.py
llmbrick/utils/__init__.py
llmbrick/utils/helpers.py
llmbrick/utils/logging.py
llmbrick/utils/metrics.py
scripts/deploy.py
scripts/generate_dataclass.py
scripts/generate_proto.py
scripts/start_dev.py