forked from github/copilot-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrpc.py
More file actions
18 lines (15 loc) · 703 Bytes
/
Copy pathrpc.py
File metadata and controls
18 lines (15 loc) · 703 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"""Public re-export of the JSON-RPC request/response types.
These types are auto-generated from the Copilot CLI protocol schemas. This
module is the stable public access point so callers can write
``copilot.rpc.SessionUpdateOptionsParams`` without depending on the internal
``copilot.generated`` package layout.
"""
from .generated.rpc import * # noqa: F401, F403
from .generated.rpc import (
BuiltinToolInputSchemaType as UIElicitationSchemaType, # noqa: F401
)
from .generated.rpc import (
SessionFsReaddirWithTypesEntryType as SessionFSReaddirWithTypesEntryType, # noqa: F401
)
from .generated.rpc import __all__ as _generated_all
__all__ = [*_generated_all, "UIElicitationSchemaType"]