mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-09-25 11:39:11 +00:00
13 lines
179 B
Python
13 lines
179 B
Python
#!/usr/bin/env python3
|
|
# -*- coding:utf-8 -*-
|
|
|
|
|
|
class Agent:
|
|
"""Agent class for interacting with DB-GPT
|
|
|
|
Attributes:
|
|
"""
|
|
|
|
def __init__(self) -> None:
|
|
pass
|