Skip to content

Commit 3e8f42f

Browse files
committed
Update project structure
1 parent 48afdfc commit 3e8f42f

27 files changed

+25
-44
lines changed
File renamed without changes.

aura/tracing.py

-19
This file was deleted.

aura/pyproject.toml pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ description = "Aura is a project for managing and automating tasks using AI and
55
readme = "README.md"
66
requires-python = ">=3.12"
77
dependencies = [
8-
"autogen-agentchat==0.4.0.dev11",
9-
"autogen-ext[langchain,openai]==0.4.0.dev11",
8+
"autogen-agentchat==0.4.0.dev13",
9+
"autogen-ext[langchain,openai]==0.4.0.dev13",
1010
"langchain-google-community[gmail]>=2.0.3",
1111
"python-dateutil>=2.9.0.post0",
1212
"rich>=13.9.4",
File renamed without changes.

aura/README.md src/aura/README.md

File renamed without changes.

aura/agents/aura.py src/aura/agents/aura.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from zoneinfo import ZoneInfo
22

33
from autogen_agentchat.agents import AssistantAgent
4-
from autogen_ext.models import OpenAIChatCompletionClient
4+
from autogen_ext.models.openai import OpenAIChatCompletionClient
55
from tools.tool_factory import (
66
get_gmail_tools,
77
get_google_calendar_tools,

aura/main.py src/aura/main.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import asyncio
22

33
from autogen_agentchat.messages import TextMessage
4-
from autogen_core.base import CancellationToken
4+
from autogen_core import CancellationToken
55
from dotenv import load_dotenv
66

77
from agents.aura import aura
File renamed without changes.

aura/tools/gmail/create_label.py src/aura/tools/gmail/create_label.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import logging
44
from typing import Optional
55

6-
from autogen_core.application.logging import TRACE_LOGGER_NAME
6+
from autogen_core import TRACE_LOGGER_NAME
77
from langchain.callbacks.manager import CallbackManagerForToolRun
88
from langchain_google_community.gmail.base import GmailBaseTool
99
from pydantic import BaseModel, Field

aura/tools/gmail/delete_label.py src/aura/tools/gmail/delete_label.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import logging
44
from typing import Optional
55

6-
from autogen_core.application.logging import TRACE_LOGGER_NAME
6+
from autogen_core import TRACE_LOGGER_NAME
77
from langchain.callbacks.manager import CallbackManagerForToolRun
88
from langchain_google_community.gmail.base import GmailBaseTool
99
from pydantic import BaseModel, Field

aura/tools/gmail/edit_label.py src/aura/tools/gmail/edit_label.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import logging
44
from typing import Optional
55

6-
from autogen_core.application.logging import TRACE_LOGGER_NAME
6+
from autogen_core import TRACE_LOGGER_NAME
77
from langchain.callbacks.manager import CallbackManagerForToolRun
88
from langchain_google_community.gmail.base import GmailBaseTool
99
from pydantic import BaseModel, Field

aura/tools/gmail/list_labels.py src/aura/tools/gmail/list_labels.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import logging
44
from typing import Optional, Type
55

6-
from autogen_core.application.logging import TRACE_LOGGER_NAME
6+
from autogen_core import TRACE_LOGGER_NAME
77
from langchain.callbacks.manager import CallbackManagerForToolRun
88
from langchain_google_community.gmail.base import GmailBaseTool
99
from pydantic import BaseModel

aura/tools/gmail/modify_email_labels.py src/aura/tools/gmail/modify_email_labels.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import logging
44
from typing import List, Optional
55

6-
from autogen_core.application.logging import TRACE_LOGGER_NAME
6+
from autogen_core import TRACE_LOGGER_NAME
77
from langchain.callbacks.manager import CallbackManagerForToolRun
88
from langchain_google_community.gmail.base import GmailBaseTool
99
from pydantic import BaseModel, Field
File renamed without changes.
File renamed without changes.

aura/tools/google_calendar/create_event.py src/aura/tools/google_calendar/create_event.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import logging
44
from typing import Optional, Type
55

6-
from autogen_core.application.logging import TRACE_LOGGER_NAME
6+
from autogen_core import TRACE_LOGGER_NAME
77
from langchain.callbacks.manager import CallbackManagerForToolRun
88
from pydantic import BaseModel, Field
99
from utils.timezone import get_local_timezone

aura/tools/google_calendar/delete_event.py src/aura/tools/google_calendar/delete_event.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import logging
44
from typing import Optional, Type
55

6-
from autogen_core.application.logging import TRACE_LOGGER_NAME
6+
from autogen_core import TRACE_LOGGER_NAME
77
from googleapiclient.errors import HttpError
88
from langchain.callbacks.manager import CallbackManagerForToolRun
99
from pydantic import BaseModel, Field

aura/tools/google_calendar/edit_event.py src/aura/tools/google_calendar/edit_event.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import logging
44
from typing import List, Optional, Type
55

6-
from autogen_core.application.logging import TRACE_LOGGER_NAME
6+
from autogen_core import TRACE_LOGGER_NAME
77
from googleapiclient.errors import HttpError
88
from langchain.callbacks.manager import CallbackManagerForToolRun
99
from pydantic import BaseModel, Field

aura/tools/google_calendar/list_calendar_events.py src/aura/tools/google_calendar/list_calendar_events.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import logging
44
from typing import Any, Dict, List, Optional, Type
55

6-
from autogen_core.application.logging import TRACE_LOGGER_NAME
6+
from autogen_core import TRACE_LOGGER_NAME
77
from dateutil import parser, tz
88
from googleapiclient.errors import HttpError
99
from langchain.callbacks.manager import (
File renamed without changes.
File renamed without changes.
File renamed without changes.

aura/utils/console.py src/aura/utils/console.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
from autogen_agentchat.base import Response
55
from autogen_agentchat.messages import AgentMessage
6-
from autogen_core.components.models import RequestUsage
6+
from autogen_core.models import RequestUsage
77
from rich.console import Console
88
from rich.markdown import Markdown
99
from rich.text import Text
File renamed without changes.

aura/uv.lock uv.lock

+11-11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)