Skip to content

Commit 49bd664

Browse files
committed
Rename parent folder.
1 parent aea36a1 commit 49bd664

File tree

11 files changed

+13
-13
lines changed

11 files changed

+13
-13
lines changed
File renamed without changes.

aws_doc_sdk_examples_tools/agent/entry_points/lliam_app.py renamed to aws_doc_sdk_examples_tools/lliam/entry_points/lliam_app.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
import logging
66
import typer
77

8-
from aws_doc_sdk_examples_tools.agent.shared_constants import BATCH_PREFIX, AILLY_DIR_PATH
9-
from aws_doc_sdk_examples_tools.agent.domain import commands
10-
from aws_doc_sdk_examples_tools.agent.service_layer import messagebus
8+
from aws_doc_sdk_examples_tools.lliam.shared_constants import BATCH_PREFIX, AILLY_DIR_PATH
9+
from aws_doc_sdk_examples_tools.lliam.domain import commands
10+
from aws_doc_sdk_examples_tools.lliam.service_layer import messagebus
1111

1212
logging.basicConfig(
1313
level=logging.INFO,

aws_doc_sdk_examples_tools/agent/service_layer/make_prompts.py renamed to aws_doc_sdk_examples_tools/lliam/service_layer/make_prompts.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
from pathlib import Path
88
from typing import Any, Generator, Iterable, List, Tuple
99

10-
from aws_doc_sdk_examples_tools.agent.domain.commands import CreatePrompts
11-
from aws_doc_sdk_examples_tools.agent.shared_constants import BATCH_PREFIX
10+
from aws_doc_sdk_examples_tools.lliam.domain.commands import CreatePrompts
11+
from aws_doc_sdk_examples_tools.lliam.shared_constants import BATCH_PREFIX
1212
from aws_doc_sdk_examples_tools.doc_gen import DocGen, Example
1313

1414
DEFAULT_METADATA_PREFIX = "DEFAULT"

aws_doc_sdk_examples_tools/agent/service_layer/messagebus.py renamed to aws_doc_sdk_examples_tools/lliam/service_layer/messagebus.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from typing import List
22

3-
from aws_doc_sdk_examples_tools.agent.domain import commands
4-
from aws_doc_sdk_examples_tools.agent.service_layer import make_prompts, update_doc_gen, run_ailly
3+
from aws_doc_sdk_examples_tools.lliam.domain import commands
4+
from aws_doc_sdk_examples_tools.lliam.service_layer import make_prompts, update_doc_gen, run_ailly
55

66
# Only handling Commands for now.
77
Message = commands.Command

aws_doc_sdk_examples_tools/agent/service_layer/run_ailly.py renamed to aws_doc_sdk_examples_tools/lliam/service_layer/run_ailly.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
from subprocess import run
77
from typing import Any, Dict, List, Set
88

9-
from aws_doc_sdk_examples_tools.agent.domain.commands import RunAilly
10-
from aws_doc_sdk_examples_tools.agent.shared_constants import AILLY_DIR_PATH, BATCH_PREFIX
9+
from aws_doc_sdk_examples_tools.lliam.domain.commands import RunAilly
10+
from aws_doc_sdk_examples_tools.lliam.shared_constants import AILLY_DIR_PATH, BATCH_PREFIX
1111

1212
logger = logging.getLogger(__file__)
1313

aws_doc_sdk_examples_tools/agent/service_layer/update_doc_gen.py renamed to aws_doc_sdk_examples_tools/lliam/service_layer/update_doc_gen.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
from aws_doc_sdk_examples_tools.yaml_writer import prepare_write, write_many
88

9-
from aws_doc_sdk_examples_tools.agent.shared_constants import AILLY_DIR_PATH, BATCH_PREFIX
10-
from aws_doc_sdk_examples_tools.agent.domain.commands import UpdateReservoir
9+
from aws_doc_sdk_examples_tools.lliam.shared_constants import AILLY_DIR_PATH, BATCH_PREFIX
10+
from aws_doc_sdk_examples_tools.lliam.domain.commands import UpdateReservoir
1111
from aws_doc_sdk_examples_tools.doc_gen import DocGen, Example
1212

1313
logger = logging.getLogger(__name__)

aws_doc_sdk_examples_tools/agent/test/process_ailly_files_test.py renamed to aws_doc_sdk_examples_tools/lliam/test/process_ailly_files_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import pytest
44
from pathlib import Path
55

6-
from aws_doc_sdk_examples_tools.agent.service_layer.run_ailly import (
6+
from aws_doc_sdk_examples_tools.lliam.service_layer.run_ailly import (
77
process_ailly_files,
88
VALUE_PREFIXES,
99
)

0 commit comments

Comments
 (0)