Skip to content

Commit f8c37bb

Browse files
committed
rearrange files in different directory structure
1 parent b842ede commit f8c37bb

File tree

62 files changed

+5
-5
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+5
-5
lines changed

Sources/BedrockService/Protocols/BedrockAgentRuntimeProtocol.swift renamed to Sources/BedrockService/BedrockRuntimeAgent/BedrockRuntimeAgentProtocol.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@ import FoundationEssentials
2222
import Foundation
2323
#endif
2424

25-
/// Protocol for Amazon Bedrock Agent Runtime operations
25+
/// Protocol for Amazon Bedrock Runtime Agent operations
2626
///
2727
/// This protocol allows writing mocks for unit tests and provides a clean interface
2828
/// for knowledge base retrieval operations.
29-
public protocol BedrockAgentRuntimeProtocol: Sendable {
29+
public protocol BedrockRuntimeAgentProtocol: Sendable {
3030
/// Retrieves information from a knowledge base
3131
/// - Parameter input: The retrieve input containing query and configuration
3232
/// - Returns: RetrieveOutput with the retrieved results
3333
/// - Throws: Error if the retrieval operation fails
3434
func retrieve(input: RetrieveInput) async throws -> RetrieveOutput
3535
}
3636

37-
extension BedrockAgentRuntimeClient: @retroactive @unchecked Sendable, BedrockAgentRuntimeProtocol {}
37+
extension BedrockAgentRuntimeClient: @retroactive @unchecked Sendable, BedrockRuntimeAgentProtocol {}

0 commit comments

Comments
 (0)