123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- from cli.command_group import cli
- from cli.commands import (
- collections,
- conversations,
- database,
- documents,
- graphs,
- indices,
- prompts,
- retrieval,
- system,
- users,
- )
- from cli.utils.telemetry import posthog, telemetry
- def add_command_with_telemetry(command):
- cli.add_command(telemetry(command))
- # Chunks
- add_command_with_telemetry(collections.collections)
- add_command_with_telemetry(conversations.conversations)
- add_command_with_telemetry(documents.documents)
- add_command_with_telemetry(graphs.graphs)
- # Graph
- add_command_with_telemetry(indices.indices)
- add_command_with_telemetry(prompts.prompts)
- add_command_with_telemetry(retrieval.retrieval)
- add_command_with_telemetry(users.users)
- add_command_with_telemetry(system.system)
- # Database
- add_command_with_telemetry(database.db)
- add_command_with_telemetry(database.upgrade)
- add_command_with_telemetry(database.downgrade)
- add_command_with_telemetry(database.current)
- add_command_with_telemetry(database.history)
- def main():
- try:
- cli()
- except SystemExit:
- # Silently exit without printing the traceback
- pass
- except Exception as e:
- # Handle other exceptions if needed
- raise e
- finally:
- # Ensure all events are flushed before exiting
- if posthog:
- posthog.flush()
- posthog.shutdown()
- if __name__ == "__main__":
- main()
|