- MarkdownLoader - org.noear.solon.ai.rag.loader中的类
-
Markdown 文档加载器
- MarkdownLoader(byte[]) - 类 的构造器org.noear.solon.ai.rag.loader.MarkdownLoader
-
- MarkdownLoader(File) - 类 的构造器org.noear.solon.ai.rag.loader.MarkdownLoader
-
- MarkdownLoader(URL) - 类 的构造器org.noear.solon.ai.rag.loader.MarkdownLoader
-
- MarkdownLoader(SupplierEx<InputStream>) - 类 的构造器org.noear.solon.ai.rag.loader.MarkdownLoader
-
- MarkdownLoader.Options - org.noear.solon.ai.rag.loader中的类
-
加载选项
- matched(ChatConfig) - 接口 中的方法org.noear.solon.ai.chat.dialect.ChatDialect
-
匹配检测
- matched(String) - 接口 中的方法org.noear.solon.ai.chat.tool.ToolCallResultConverter
-
匹配
- matched(String) - 类 中的方法org.noear.solon.ai.chat.tool.ToolCallResultJsonConverter
-
- matched(EmbeddingConfig) - 接口 中的方法org.noear.solon.ai.embedding.dialect.EmbeddingDialect
-
匹配检测
- matched(ImageConfig) - 接口 中的方法org.noear.solon.ai.image.dialect.ImageDialect
-
匹配检测
- matched(ChatConfig) - 类 中的方法org.noear.solon.ai.llm.dialect.dashscope.DashscopeChatDialect
-
匹配检测
- matched(EmbeddingConfig) - 类 中的方法org.noear.solon.ai.llm.dialect.dashscope.DashscopeEmbeddingDialect
-
匹配检测
- matched(ImageConfig) - 类 中的方法org.noear.solon.ai.llm.dialect.dashscope.DashscopeImageDialect
-
匹配检测
- matched(RerankingConfig) - 类 中的方法org.noear.solon.ai.llm.dialect.dashscope.DashscopeRerankingDialect
-
匹配检测
- matched(ChatConfig) - 类 中的方法org.noear.solon.ai.llm.dialect.ollama.OllamaChatDialect
-
匹配检测
- matched(EmbeddingConfig) - 类 中的方法org.noear.solon.ai.llm.dialect.ollama.OllamaEmbeddingDialect
-
- matched(ImageConfig) - 类 中的方法org.noear.solon.ai.llm.dialect.ollama.OllamaImageDialect
-
- matched(ChatConfig) - 类 中的方法org.noear.solon.ai.llm.dialect.openai.OpenaiChatDialect
-
匹配检测
- matched(EmbeddingConfig) - 类 中的方法org.noear.solon.ai.llm.dialect.openai.OpenaiEmbeddingDialect
-
- matched(ImageConfig) - 类 中的方法org.noear.solon.ai.llm.dialect.openai.OpenaiImageDialect
-
- matched(RerankingConfig) - 类 中的方法org.noear.solon.ai.llm.dialect.openai.OpenaiRerankingDialect
-
- matched(RerankingConfig) - 接口 中的方法org.noear.solon.ai.reranking.dialect.RerankingDialect
-
匹配检测
- matchesTemplate(String) - 类 中的方法io.modelcontextprotocol.util.UriTemplate
-
Checks if a given URI matches the compiled template pattern.
- MAX_COMPLETION_TOKENS - 类 中的静态变量org.noear.solon.ai.chat.ChatOptions
-
- max_completion_tokens(long) - 类 中的方法org.noear.solon.ai.chat.ChatOptions
-
常用选项:最大完成令牌数限制
- MAX_TOKENS - 类 中的静态变量org.noear.solon.ai.chat.ChatOptions
-
- max_tokens(long) - 类 中的方法org.noear.solon.ai.chat.ChatOptions
-
常用选项:最大提示语令牌数限制
- maxTokens(int) - 类 中的方法io.modelcontextprotocol.spec.McpSchema.CreateMessageRequest.Builder
-
- MCP_BODY_ATTR - 类 中的静态变量org.noear.solon.ai.chat.tool.MethodExecuteHandler
-
- McpAsyncClient - io.modelcontextprotocol.client中的类
-
The Model Context Protocol (MCP) client implementation that provides asynchronous
communication with MCP servers using Project Reactor's Mono and Flux types.
- McpAsyncServer - io.modelcontextprotocol.server中的类
-
The Model Context Protocol (MCP) server implementation that provides asynchronous
communication using Project Reactor's Mono and Flux types.
- McpAsyncServerExchange - io.modelcontextprotocol.server中的类
-
Represents an asynchronous exchange with a Model Context Protocol (MCP) client.
- McpAsyncServerExchange(McpServerSession, McpSchema.ClientCapabilities, McpSchema.Implementation) - 类 的构造器io.modelcontextprotocol.server.McpAsyncServerExchange
-
Create a new asynchronous exchange with the client.
- McpChannel - org.noear.solon.ai.mcp中的接口
-
Mcp 通道
- McpClient - io.modelcontextprotocol.client中的接口
-
Factory class for creating Model Context Protocol (MCP) clients.
- McpClient.AsyncSpec - io.modelcontextprotocol.client中的类
-
Asynchronous client specification.
- McpClient.SyncSpec - io.modelcontextprotocol.client中的类
-
Synchronous client specification.
- McpClientProperties - org.noear.solon.ai.mcp.client中的类
-
Mcp 客户端属性
- McpClientProperties() - 类 的构造器org.noear.solon.ai.mcp.client.McpClientProperties
-
- McpClientProperties(String) - 类 的构造器org.noear.solon.ai.mcp.client.McpClientProperties
-
- McpClientProvider - org.noear.solon.ai.mcp.client中的类
-
Mcp 客户端提供者
{@code
McpClientProvider toolProvider = McpClientProvider.builder()
.apiUrl("http://localhost:8081/sse")
.build();
ChatModel chatModel = ChatModel.of("http://127.0.0.1:11434/api/chat")
.model("deepseek-v3")
.defaultToolsAdd(toolProvider)
.build();
ChatResponse resp = chatModel.prompt("杭州天气和北京降雨量如何?")
- McpClientProvider(Properties) - 类 的构造器org.noear.solon.ai.mcp.client.McpClientProvider
-
用于支持注入
- McpClientProvider(String) - 类 的构造器org.noear.solon.ai.mcp.client.McpClientProvider
-
用于简单构建
- McpClientProvider(McpClientProperties) - 类 的构造器org.noear.solon.ai.mcp.client.McpClientProvider
-
- McpClientProvider.Builder - org.noear.solon.ai.mcp.client中的类
-
- McpClientSession - io.modelcontextprotocol.spec中的类
-
Default implementation of the MCP (Model Context Protocol) session that manages
bidirectional JSON-RPC communication between clients and servers.
- McpClientSession(Duration, McpTransport, Map<String, McpClientSession.RequestHandler<?>>, Map<String, McpClientSession.NotificationHandler>) - 类 的构造器io.modelcontextprotocol.spec.McpClientSession
-
Creates a new McpClientSession with the specified configuration and handlers.
- McpClientSession.MethodNotFoundError - io.modelcontextprotocol.spec中的类
-
- McpClientSession.NotificationHandler - io.modelcontextprotocol.spec中的接口
-
Functional interface for handling incoming JSON-RPC notifications.
- McpClientSession.RequestHandler<T> - io.modelcontextprotocol.spec中的接口
-
Functional interface for handling incoming JSON-RPC requests.
- McpClientTransport - io.modelcontextprotocol.spec中的接口
-
Marker interface for the client-side MCP transport.
- McpError - io.modelcontextprotocol.spec中的异常错误
-
- McpError(McpSchema.JSONRPCResponse.JSONRPCError) - 异常错误 的构造器io.modelcontextprotocol.spec.McpError
-
- McpError(Object) - 异常错误 的构造器io.modelcontextprotocol.spec.McpError
-
- McpException - org.noear.solon.ai.mcp.exception中的异常错误
-
- McpException(String) - 异常错误 的构造器org.noear.solon.ai.mcp.exception.McpException
-
- McpException(String, Throwable) - 异常错误 的构造器org.noear.solon.ai.mcp.exception.McpException
-
- McpException(Throwable) - 异常错误 的构造器org.noear.solon.ai.mcp.exception.McpException
-
- McpPlugin - org.noear.solon.ai.mcp.integration中的类
-
Mcp 插件
- McpPlugin() - 类 的构造器org.noear.solon.ai.mcp.integration.McpPlugin
-
- McpProperties - org.noear.solon.ai.mcp.integration中的类
-
Mcp 属性(仅用于配置提示)
- McpProperties() - 类 的构造器org.noear.solon.ai.mcp.integration.McpProperties
-
- McpSchema - io.modelcontextprotocol.spec中的类
-
- McpSchema.Annotated - io.modelcontextprotocol.spec中的接口
-
Base for objects that include optional annotations for the client.
- McpSchema.Annotations - io.modelcontextprotocol.spec中的类
-
Optional annotations for the client.
- McpSchema.BlobResourceContents - io.modelcontextprotocol.spec中的类
-
Binary contents of a resource.
- McpSchema.CallToolRequest - io.modelcontextprotocol.spec中的类
-
Used by the client to call a tool provided by the server.
- McpSchema.CallToolResult - io.modelcontextprotocol.spec中的类
-
The server's response to a tools/call request from the client.
- McpSchema.ClientCapabilities - io.modelcontextprotocol.spec中的类
-
Clients can implement additional features to enrich connected MCP servers with
additional capabilities.
- McpSchema.ClientCapabilities.Builder - io.modelcontextprotocol.spec中的类
-
- McpSchema.ClientCapabilities.RootCapabilities - io.modelcontextprotocol.spec中的类
-
Roots define the boundaries of where servers can operate within the filesystem,
allowing them to understand which directories and files they have access to.
- McpSchema.ClientCapabilities.Sampling - io.modelcontextprotocol.spec中的类
-
Provides a standardized way for servers to request LLM
sampling ("completions" or "generations") from language
models via clients.
- McpSchema.CompleteRequest - io.modelcontextprotocol.spec中的类
-
- McpSchema.CompleteRequest.CompleteArgument - io.modelcontextprotocol.spec中的类
-
- McpSchema.CompleteRequest.PromptOrResourceReference - io.modelcontextprotocol.spec中的接口
-
- McpSchema.CompleteRequest.PromptReference - io.modelcontextprotocol.spec中的类
-
- McpSchema.CompleteRequest.ResourceReference - io.modelcontextprotocol.spec中的类
-
- McpSchema.CompleteResult - io.modelcontextprotocol.spec中的类
-
- McpSchema.CompleteResult.CompleteCompletion - io.modelcontextprotocol.spec中的类
-
- McpSchema.Content - io.modelcontextprotocol.spec中的接口
-
- McpSchema.CreateMessageRequest - io.modelcontextprotocol.spec中的类
-
- McpSchema.CreateMessageRequest.Builder - io.modelcontextprotocol.spec中的类
-
- McpSchema.CreateMessageRequest.ContextInclusionStrategy - io.modelcontextprotocol.spec中的枚举
-
- McpSchema.CreateMessageResult - io.modelcontextprotocol.spec中的类
-
- McpSchema.CreateMessageResult.Builder - io.modelcontextprotocol.spec中的类
-
- McpSchema.CreateMessageResult.StopReason - io.modelcontextprotocol.spec中的枚举
-
- McpSchema.EmbeddedResource - io.modelcontextprotocol.spec中的类
-
- McpSchema.ErrorCodes - io.modelcontextprotocol.spec中的类
-
Standard error codes used in MCP JSON-RPC responses.
- McpSchema.GetPromptRequest - io.modelcontextprotocol.spec中的类
-
Used by the client to get a prompt provided by the server.
- McpSchema.GetPromptResult - io.modelcontextprotocol.spec中的类
-
The server's response to a prompts/get request from the client.
- McpSchema.ImageContent - io.modelcontextprotocol.spec中的类
-
- McpSchema.Implementation - io.modelcontextprotocol.spec中的类
-
- McpSchema.InitializeRequest - io.modelcontextprotocol.spec中的类
-
- McpSchema.InitializeResult - io.modelcontextprotocol.spec中的类
-
- McpSchema.JSONRPCMessage - io.modelcontextprotocol.spec中的接口
-
- McpSchema.JSONRPCNotification - io.modelcontextprotocol.spec中的类
-
- McpSchema.JSONRPCRequest - io.modelcontextprotocol.spec中的类
-
- McpSchema.JSONRPCResponse - io.modelcontextprotocol.spec中的类
-
- McpSchema.JSONRPCResponse.JSONRPCError - io.modelcontextprotocol.spec中的类
-
- McpSchema.JsonSchema - io.modelcontextprotocol.spec中的类
-
- McpSchema.ListPromptsResult - io.modelcontextprotocol.spec中的类
-
The server's response to a prompts/list request from the client.
- McpSchema.ListResourcesResult - io.modelcontextprotocol.spec中的类
-
- McpSchema.ListResourceTemplatesResult - io.modelcontextprotocol.spec中的类
-
- McpSchema.ListRootsResult - io.modelcontextprotocol.spec中的类
-
The client's response to a roots/list request from the server.
- McpSchema.ListToolsResult - io.modelcontextprotocol.spec中的类
-
The server's response to a tools/list request from the client.
- McpSchema.LoggingLevel - io.modelcontextprotocol.spec中的枚举
-
- McpSchema.LoggingMessageNotification - io.modelcontextprotocol.spec中的类
-
The Model Context Protocol (MCP) provides a standardized way for servers to send
structured log messages to clients.
- McpSchema.LoggingMessageNotification.Builder - io.modelcontextprotocol.spec中的类
-
- McpSchema.ModelHint - io.modelcontextprotocol.spec中的类
-
- McpSchema.ModelPreferences - io.modelcontextprotocol.spec中的类
-
- McpSchema.ModelPreferences.Builder - io.modelcontextprotocol.spec中的类
-
- McpSchema.PaginatedRequest - io.modelcontextprotocol.spec中的类
-
- McpSchema.PaginatedResult - io.modelcontextprotocol.spec中的类
-
- McpSchema.ProgressNotification - io.modelcontextprotocol.spec中的类
-
- McpSchema.Prompt - io.modelcontextprotocol.spec中的类
-
A prompt or prompt template that the server offers.
- McpSchema.PromptArgument - io.modelcontextprotocol.spec中的类
-
Describes an argument that a prompt can accept.
- McpSchema.PromptMessage - io.modelcontextprotocol.spec中的类
-
Describes a message returned as part of a prompt.
- McpSchema.ReadResourceRequest - io.modelcontextprotocol.spec中的类
-
- McpSchema.ReadResourceResult - io.modelcontextprotocol.spec中的类
-
- McpSchema.Request - io.modelcontextprotocol.spec中的接口
-
- McpSchema.Resource - io.modelcontextprotocol.spec中的类
-
A known resource that the server is capable of reading.
- McpSchema.ResourceContents - io.modelcontextprotocol.spec中的接口
-
The contents of a specific resource or sub-resource.
- McpSchema.ResourceTemplate - io.modelcontextprotocol.spec中的类
-
Resource templates allow servers to expose parameterized resources using URI
templates.
- McpSchema.Role - io.modelcontextprotocol.spec中的枚举
-
- McpSchema.Root - io.modelcontextprotocol.spec中的类
-
Represents a root directory or file that the server can operate on.
- McpSchema.SamplingMessage - io.modelcontextprotocol.spec中的类
-
- McpSchema.ServerCapabilities - io.modelcontextprotocol.spec中的类
-
- McpSchema.ServerCapabilities.Builder - io.modelcontextprotocol.spec中的类
-
- McpSchema.ServerCapabilities.LoggingCapabilities - io.modelcontextprotocol.spec中的类
-
- McpSchema.ServerCapabilities.PromptCapabilities - io.modelcontextprotocol.spec中的类
-
- McpSchema.ServerCapabilities.ResourceCapabilities - io.modelcontextprotocol.spec中的类
-
- McpSchema.ServerCapabilities.ToolCapabilities - io.modelcontextprotocol.spec中的类
-
- McpSchema.SubscribeRequest - io.modelcontextprotocol.spec中的类
-
Sent from the client to request resources/updated notifications from the server
whenever a particular resource changes.
- McpSchema.TextContent - io.modelcontextprotocol.spec中的类
-
- McpSchema.TextResourceContents - io.modelcontextprotocol.spec中的类
-
Text contents of a resource.
- McpSchema.Tool - io.modelcontextprotocol.spec中的类
-
Represents a tool that the server provides.
- McpSchema.UnsubscribeRequest - io.modelcontextprotocol.spec中的类
-
- McpServer - io.modelcontextprotocol.server中的接口
-
Factory class for creating Model Context Protocol (MCP) servers.
- McpServer.AsyncSpecification - io.modelcontextprotocol.server中的类
-
Asynchronous server specification.
- McpServer.SyncSpecification - io.modelcontextprotocol.server中的类
-
Synchronous server specification.
- McpServerContext - org.noear.solon.ai.mcp.server中的类
-
Mcp 服务端请求上下文
- McpServerContext(McpSyncServerExchange) - 类 的构造器org.noear.solon.ai.mcp.server.McpServerContext
-
- McpServerEndpoint - org.noear.solon.ai.mcp.server.annotation中的注释类型
-
Mcp 服务端点注解
- McpServerEndpointProvider - org.noear.solon.ai.mcp.server中的类
-
Mcp 服务端点提供者
- McpServerEndpointProvider(Properties) - 类 的构造器org.noear.solon.ai.mcp.server.McpServerEndpointProvider
-
- McpServerEndpointProvider(McpServerProperties) - 类 的构造器org.noear.solon.ai.mcp.server.McpServerEndpointProvider
-
- McpServerEndpointProvider.Builder - org.noear.solon.ai.mcp.server中的类
-
- McpServerFeatures - io.modelcontextprotocol.server中的类
-
MCP server features specification that a particular server can choose to support.
- McpServerFeatures() - 类 的构造器io.modelcontextprotocol.server.McpServerFeatures
-
- McpServerFeatures.Async - io.modelcontextprotocol.server中的类
-
Asynchronous server features specification.
- McpServerFeatures.AsyncPromptRegistration - io.modelcontextprotocol.server中的类
-
- McpServerFeatures.AsyncPromptSpecification - io.modelcontextprotocol.server中的类
-
Specification of a prompt template with its asynchronous handler function.
- McpServerFeatures.AsyncResourceRegistration - io.modelcontextprotocol.server中的类
-
- McpServerFeatures.AsyncResourceSpecification - io.modelcontextprotocol.server中的类
-
Specification of a resource with its asynchronous handler function.
- McpServerFeatures.AsyncResourceTemplateSpecification - io.modelcontextprotocol.server中的类
-
- McpServerFeatures.AsyncToolRegistration - io.modelcontextprotocol.server中的类
-
- McpServerFeatures.AsyncToolSpecification - io.modelcontextprotocol.server中的类
-
Specification of a tool with its asynchronous handler function.
- McpServerFeatures.Sync - io.modelcontextprotocol.server中的类
-
Synchronous server features specification.
- McpServerFeatures.SyncPromptRegistration - io.modelcontextprotocol.server中的类
-
- McpServerFeatures.SyncPromptSpecification - io.modelcontextprotocol.server中的类
-
Specification of a prompt template with its synchronous handler function.
- McpServerFeatures.SyncResourceRegistration - io.modelcontextprotocol.server中的类
-
- McpServerFeatures.SyncResourceSpecification - io.modelcontextprotocol.server中的类
-
Specification of a resource with its synchronous handler function.
- McpServerFeatures.SyncResourceTemplateSpecification - io.modelcontextprotocol.server中的类
-
Specification of a resource template with its synchronous handler function.
- McpServerFeatures.SyncToolRegistration - io.modelcontextprotocol.server中的类
-
- McpServerFeatures.SyncToolSpecification - io.modelcontextprotocol.server中的类
-
Specification of a tool with its synchronous handler function.
- McpServerManager<T> - org.noear.solon.ai.mcp.server.manager中的接口
-
服务端管理器
- McpServerParameters - org.noear.solon.ai.mcp.client中的类
-
- McpServerParameters() - 类 的构造器org.noear.solon.ai.mcp.client.McpServerParameters
-
- McpServerParameters.Builder - org.noear.solon.ai.mcp.client中的类
-
- McpServerProperties - org.noear.solon.ai.mcp.server中的类
-
Mcp 服务属性
- McpServerProperties() - 类 的构造器org.noear.solon.ai.mcp.server.McpServerProperties
-
- McpServerSession - io.modelcontextprotocol.spec中的类
-
Represents a Model Control Protocol (MCP) session on the server side.
- McpServerSession(String, McpServerTransport, McpServerSession.InitRequestHandler, McpServerSession.InitNotificationHandler, Map<String, McpServerSession.RequestHandler<?>>, Map<String, McpServerSession.NotificationHandler>) - 类 的构造器io.modelcontextprotocol.spec.McpServerSession
-
Creates a new server session with the given parameters and the transport to use.
- McpServerSession.Factory - io.modelcontextprotocol.spec中的接口
-
Factory for creating server sessions which delegate to a provided 1:1 transport
with a connected client.
- McpServerSession.InitNotificationHandler - io.modelcontextprotocol.spec中的接口
-
Notification handler for the initialization notification from the client.
- McpServerSession.InitRequestHandler - io.modelcontextprotocol.spec中的接口
-
Request handler for the initialization request.
- McpServerSession.MethodNotFoundError - io.modelcontextprotocol.spec中的类
-
- McpServerSession.NotificationHandler - io.modelcontextprotocol.spec中的接口
-
A handler for client-initiated notifications.
- McpServerSession.RequestHandler<T> - io.modelcontextprotocol.spec中的接口
-
A handler for client-initiated requests.
- McpServerTransport - io.modelcontextprotocol.spec中的接口
-
Marker interface for the server-side MCP transport.
- McpServerTransportProvider - io.modelcontextprotocol.spec中的接口
-
The core building block providing the server-side MCP transport.
- McpSession - io.modelcontextprotocol.spec中的接口
-
Represents a Model Control Protocol (MCP) session that handles communication between
clients and the server.
- McpSyncClient - io.modelcontextprotocol.client中的类
-
A synchronous client implementation for the Model Context Protocol (MCP) that wraps an
McpAsyncClient
to provide blocking operations.
- McpSyncClient(McpAsyncClient) - 类 的构造器io.modelcontextprotocol.client.McpSyncClient
-
- McpSyncServer - io.modelcontextprotocol.server中的类
-
A synchronous implementation of the Model Context Protocol (MCP) server that wraps
McpAsyncServer
to provide blocking operations.
- McpSyncServer(McpAsyncServer) - 类 的构造器io.modelcontextprotocol.server.McpSyncServer
-
Creates a new synchronous server that wraps the provided async server.
- McpSyncServerExchange - io.modelcontextprotocol.server中的类
-
Represents a synchronous exchange with a Model Context Protocol (MCP) client.
- McpSyncServerExchange(McpAsyncServerExchange) - 类 的构造器io.modelcontextprotocol.server.McpSyncServerExchange
-
Create a new synchronous exchange with the client using the provided asynchronous
implementation as a delegate.
- McpToolCom - org.noear.solon.ai.flow.components.tools中的类
-
MCP 工具组件
- McpToolCom() - 类 的构造器org.noear.solon.ai.flow.components.tools.McpToolCom
-
- McpTransport - io.modelcontextprotocol.spec中的接口
-
Defines the asynchronous transport layer for the Model Context Protocol (MCP).
- mediaAdd(AiMedia) - 类 中的方法org.noear.solon.ai.chat.message.UserMessageTemplate
-
配置感知媒体
- message(String) - 类 中的方法io.modelcontextprotocol.spec.McpSchema.CreateMessageResult.Builder
-
- MESSAGE_EVENT_TYPE - 类 中的静态变量io.modelcontextprotocol.server.transport.WebRxSseServerTransportProvider
-
Event type for JSON-RPC messages sent through the SSE connection.
- messageEndpoint(String) - 类 中的方法io.modelcontextprotocol.server.transport.WebRxSseServerTransportProvider.Builder
-
Sets the endpoint URI where clients should send their JSON-RPC messages.
- messageEndpoint(String) - 类 中的方法org.noear.solon.ai.mcp.server.McpServerEndpointProvider.Builder
-
Message 端点
- messages(List<McpSchema.SamplingMessage>) - 类 中的方法io.modelcontextprotocol.spec.McpSchema.CreateMessageRequest.Builder
-
- META_ATTACHMENT - 接口 中的静态变量org.noear.solon.ai.flow.components.Attrs
-
- META_CHAT_SESSION - 接口 中的静态变量org.noear.solon.ai.flow.components.Attrs
-
- META_INPUT - 接口 中的静态变量org.noear.solon.ai.flow.components.Attrs
-
- META_OUTPUT - 接口 中的静态变量org.noear.solon.ai.flow.components.Attrs
-
- metadata(Map<String, Object>) - 类 中的方法io.modelcontextprotocol.spec.McpSchema.CreateMessageRequest.Builder
-
- metadata - 类 中的变量org.noear.solon.ai.chat.message.ChatMessageBase
-
- metadata - 类 中的变量org.noear.solon.ai.rag.Document
-
- metadata(String, Object) - 类 中的方法org.noear.solon.ai.rag.Document
-
添加元数据
- metadata(Map<String, Object>) - 类 中的方法org.noear.solon.ai.rag.Document
-
添加元数据
- MetadataField - org.noear.solon.ai.rag.repository.dashvector中的类
-
MetadataField
- MetadataField() - 类 的构造器org.noear.solon.ai.rag.repository.dashvector.MetadataField
-
- MetadataField(String, FieldType) - 类 的构造器org.noear.solon.ai.rag.repository.dashvector.MetadataField
-
- MetadataField - org.noear.solon.ai.rag.repository.elasticsearch中的类
-
元数据字段,用于定义Elasticsearch索引字段
- MetadataField(String, MetadataField.FieldType) - 类 的构造器org.noear.solon.ai.rag.repository.elasticsearch.MetadataField
-
构造函数
- MetadataField - org.noear.solon.ai.rag.repository.redis中的类
-
MetadataField
- MetadataField(String, Schema.FieldType) - 类 的构造器org.noear.solon.ai.rag.repository.redis.MetadataField
-
- MetadataField - org.noear.solon.ai.rag.repository.tcvectordb中的类
-
元数据字段,用于定义向量库索引字段
- MetadataField(String, FieldType) - 类 的构造器org.noear.solon.ai.rag.repository.tcvectordb.MetadataField
-
创建元数据字段
- MetadataField.FieldType - org.noear.solon.ai.rag.repository.elasticsearch中的枚举
-
Elasticsearch字段类型枚举
- metadataFields(List<MetadataField>) - 类 中的方法org.noear.solon.ai.rag.repository.DashVectorRepository.Builder
-
设置元数据索引字段
- metadataFields(List<MetadataField>) - 类 中的方法org.noear.solon.ai.rag.repository.ElasticsearchRepository.Builder
-
设置需要索引的元数据字段
- metadataFields(List<MetadataField>) - 类 中的方法org.noear.solon.ai.rag.repository.RedisRepository.Builder
-
设置元数据索引字段
- metadataFields(List<MetadataField>) - 类 中的方法org.noear.solon.ai.rag.repository.TcVectorDbRepository.Builder
-
设置元数据索引字段
- metadataIndexFields(List<MetadataField>) - 类 中的方法org.noear.solon.ai.rag.repository.DashVectorRepository.Builder
-
- metadataIndexFields(List<MetadataField>) - 类 中的方法org.noear.solon.ai.rag.repository.RedisRepository.Builder
-
- metadataMapper(Function<Map<String, Object>, Map<String, Object>>) - 类 中的方法org.noear.solon.ai.rag.splitter.JsonSplitter
-
元数据映射器(将内容数据转为元数据)
- METHOD_INITIALIZE - 类 中的静态变量io.modelcontextprotocol.spec.McpSchema
-
- METHOD_LOGGING_SET_LEVEL - 类 中的静态变量io.modelcontextprotocol.spec.McpSchema
-
- METHOD_NOT_FOUND - 类 中的静态变量io.modelcontextprotocol.spec.McpSchema.ErrorCodes
-
The method does not exist / is not available.
- METHOD_NOTIFICATION_INITIALIZED - 类 中的静态变量io.modelcontextprotocol.spec.McpSchema
-
- METHOD_NOTIFICATION_MESSAGE - 类 中的静态变量io.modelcontextprotocol.spec.McpSchema
-
- METHOD_NOTIFICATION_PROMPTS_LIST_CHANGED - 类 中的静态变量io.modelcontextprotocol.spec.McpSchema
-
- METHOD_NOTIFICATION_RESOURCES_LIST_CHANGED - 类 中的静态变量io.modelcontextprotocol.spec.McpSchema
-
- METHOD_NOTIFICATION_ROOTS_LIST_CHANGED - 类 中的静态变量io.modelcontextprotocol.spec.McpSchema
-
- METHOD_NOTIFICATION_TOOLS_LIST_CHANGED - 类 中的静态变量io.modelcontextprotocol.spec.McpSchema
-
- METHOD_PING - 类 中的静态变量io.modelcontextprotocol.spec.McpSchema
-
- METHOD_PROMPT_GET - 类 中的静态变量io.modelcontextprotocol.spec.McpSchema
-
- METHOD_PROMPT_LIST - 类 中的静态变量io.modelcontextprotocol.spec.McpSchema
-
- METHOD_RESOURCES_LIST - 类 中的静态变量io.modelcontextprotocol.spec.McpSchema
-
- METHOD_RESOURCES_READ - 类 中的静态变量io.modelcontextprotocol.spec.McpSchema
-
- METHOD_RESOURCES_SUBSCRIBE - 类 中的静态变量io.modelcontextprotocol.spec.McpSchema
-
- METHOD_RESOURCES_TEMPLATES_LIST - 类 中的静态变量io.modelcontextprotocol.spec.McpSchema
-
- METHOD_RESOURCES_UNSUBSCRIBE - 类 中的静态变量io.modelcontextprotocol.spec.McpSchema
-
- METHOD_ROOTS_LIST - 类 中的静态变量io.modelcontextprotocol.spec.McpSchema
-
- METHOD_SAMPLING_CREATE_MESSAGE - 类 中的静态变量io.modelcontextprotocol.spec.McpSchema
-
- METHOD_TOOLS_CALL - 类 中的静态变量io.modelcontextprotocol.spec.McpSchema
-
- METHOD_TOOLS_LIST - 类 中的静态变量io.modelcontextprotocol.spec.McpSchema
-
- MethodExecuteHandler - org.noear.solon.ai.chat.tool中的类
-
Json 动作执行器
- MethodExecuteHandler() - 类 的构造器org.noear.solon.ai.chat.tool.MethodExecuteHandler
-
- MethodFunctionPrompt - org.noear.solon.ai.mcp.server.prompt中的类
-
方法构建的函数提示语
- MethodFunctionPrompt(BeanWrap, Method) - 类 的构造器org.noear.solon.ai.mcp.server.prompt.MethodFunctionPrompt
-
- MethodFunctionResource - org.noear.solon.ai.mcp.server.resource中的类
-
方法构建的函数资源
- MethodFunctionResource(BeanWrap, Method) - 类 的构造器org.noear.solon.ai.mcp.server.resource.MethodFunctionResource
-
- MethodFunctionTool - org.noear.solon.ai.chat.tool中的类
-
方法构建的函数工具
- MethodFunctionTool(BeanWrap, Method) - 类 的构造器org.noear.solon.ai.chat.tool.MethodFunctionTool
-
- MethodNotFoundError() - 类 的构造器io.modelcontextprotocol.spec.DefaultMcpSession.MethodNotFoundError
-
已过时。
- MethodNotFoundError() - 类 的构造器io.modelcontextprotocol.spec.McpClientSession.MethodNotFoundError
-
- MethodNotFoundError() - 类 的构造器io.modelcontextprotocol.spec.McpServerSession.MethodNotFoundError
-
- MethodPromptProvider - org.noear.solon.ai.mcp.server.prompt中的类
-
方法构建的资源提供者
- MethodPromptProvider(Object) - 类 的构造器org.noear.solon.ai.mcp.server.prompt.MethodPromptProvider
-
- MethodPromptProvider(Class<?>, Object) - 类 的构造器org.noear.solon.ai.mcp.server.prompt.MethodPromptProvider
-
- MethodPromptProvider(BeanWrap) - 类 的构造器org.noear.solon.ai.mcp.server.prompt.MethodPromptProvider
-
- MethodResourceProvider - org.noear.solon.ai.mcp.server.resource中的类
-
方法构建的资源提供者
- MethodResourceProvider(Object) - 类 的构造器org.noear.solon.ai.mcp.server.resource.MethodResourceProvider
-
- MethodResourceProvider(Class<?>, Object) - 类 的构造器org.noear.solon.ai.mcp.server.resource.MethodResourceProvider
-
- MethodResourceProvider(BeanWrap) - 类 的构造器org.noear.solon.ai.mcp.server.resource.MethodResourceProvider
-
- MethodToolProvider - org.noear.solon.ai.chat.tool中的类
-
方法构建的工具提供者
- MethodToolProvider(Object) - 类 的构造器org.noear.solon.ai.chat.tool.MethodToolProvider
-
- MethodToolProvider(Class<?>, Object) - 类 的构造器org.noear.solon.ai.chat.tool.MethodToolProvider
-
- MethodToolProvider(BeanWrap) - 类 的构造器org.noear.solon.ai.chat.tool.MethodToolProvider
-
- metricType(MetricType) - 类 中的方法org.noear.solon.ai.rag.repository.TcVectorDbRepository.Builder
-
设置相似度度量类型
- MilvusRepository - org.noear.solon.ai.rag.repository中的类
-
Milvus 矢量存储知识库
- MilvusRepository.Builder - org.noear.solon.ai.rag.repository中的类
-
- mimeType() - 接口 中的方法org.noear.solon.ai.mcp.server.resource.FunctionResource
-
媒体类型
- mimeType(String) - 类 中的方法org.noear.solon.ai.mcp.server.resource.FunctionResourceDesc
-
申明媒体类型
- mimeType() - 类 中的方法org.noear.solon.ai.mcp.server.resource.FunctionResourceDesc
-
- mimeType() - 类 中的方法org.noear.solon.ai.mcp.server.resource.MethodFunctionResource
-
- mimeType - 类 中的变量org.noear.solon.ai.media.AbstractMedia
-
- mimeType() - 类 中的方法org.noear.solon.ai.rag.repository.chroma.StringSerializer
-
内容类型
- mimeType() - 类 中的方法org.noear.solon.ai.rag.repository.dashvector.StringSerializer
-
内容类型
- model(String) - 类 中的方法io.modelcontextprotocol.spec.McpSchema.CreateMessageResult.Builder
-
- model - 类 中的变量org.noear.solon.ai.AiConfig
-
- model(String) - 类 中的方法org.noear.solon.ai.chat.ChatModel.Builder
-
使用模型
- model - 类 中的变量org.noear.solon.ai.chat.ChatResponseDefault
-
- model(String) - 类 中的方法org.noear.solon.ai.embedding.EmbeddingModel.Builder
-
使用模型
- model(String) - 类 中的方法org.noear.solon.ai.image.ImageModel.Builder
-
使用模型
- model(String) - 类 中的方法org.noear.solon.ai.image.ImageOptions
-
模型
- model(String) - 类 中的方法org.noear.solon.ai.reranking.RerankingModel.Builder
-
使用模型
- ModelHint() - 类 的构造器io.modelcontextprotocol.spec.McpSchema.ModelHint
-
- modelPreferences(McpSchema.ModelPreferences) - 类 中的方法io.modelcontextprotocol.spec.McpSchema.CreateMessageRequest.Builder
-
- ModelPreferences() - 类 的构造器io.modelcontextprotocol.spec.McpSchema.ModelPreferences
-