mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-06-09 07:16:04 +00:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4fd488b97a | ||
|
|
422a34ead4 |
@@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "langbot"
|
name = "langbot"
|
||||||
version = "4.8.5"
|
version = "4.8.6"
|
||||||
description = "Production-grade platform for building agentic IM bots"
|
description = "Production-grade platform for building agentic IM bots"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
license-files = ["LICENSE"]
|
license-files = ["LICENSE"]
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
"""LangBot - Production-grade platform for building agentic IM bots"""
|
"""LangBot - Production-grade platform for building agentic IM bots"""
|
||||||
|
|
||||||
__version__ = '4.8.5'
|
__version__ = '4.8.6'
|
||||||
|
|||||||
2
uv.lock
generated
2
uv.lock
generated
@@ -1799,7 +1799,7 @@ wheels = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "langbot"
|
name = "langbot"
|
||||||
version = "4.8.4"
|
version = "4.8.6"
|
||||||
source = { editable = "." }
|
source = { editable = "." }
|
||||||
dependencies = [
|
dependencies = [
|
||||||
{ name = "aiocqhttp" },
|
{ name = "aiocqhttp" },
|
||||||
|
|||||||
@@ -297,15 +297,6 @@ function MarketPageContent({
|
|||||||
const handleInstallPlugin = useCallback(
|
const handleInstallPlugin = useCallback(
|
||||||
async (author: string, pluginName: string) => {
|
async (author: string, pluginName: string) => {
|
||||||
try {
|
try {
|
||||||
// Find the full plugin object from the list
|
|
||||||
const pluginVO = plugins.find(
|
|
||||||
(p) => p.author === author && p.pluginName === pluginName,
|
|
||||||
);
|
|
||||||
if (!pluginVO) {
|
|
||||||
console.error('Plugin not found:', author, pluginName);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Fetch full plugin details to get PluginV4 object
|
// Fetch full plugin details to get PluginV4 object
|
||||||
const response = await getCloudServiceClientSync().getPluginDetail(
|
const response = await getCloudServiceClientSync().getPluginDetail(
|
||||||
author,
|
author,
|
||||||
|
|||||||
Reference in New Issue
Block a user