Skip to content

Commit

Permalink
array to object
Browse files Browse the repository at this point in the history
Signed-off-by: alperozturk <[email protected]>
  • Loading branch information
alperozturk96 committed Jan 10, 2025
1 parent b8c2463 commit e0cee66
Showing 1 changed file with 16 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
package com.owncloud.android.lib.resources.assistant.v2

import com.owncloud.android.AbstractIT
import com.owncloud.android.lib.resources.assistant.v2.model.Shape
import com.owncloud.android.lib.resources.assistant.v2.model.TaskInputShape
import com.owncloud.android.lib.resources.assistant.v2.model.TaskOutputShape
import com.owncloud.android.lib.resources.assistant.v2.model.TaskTypeData
Expand All @@ -29,20 +30,24 @@ class AssistantV2Tests : AbstractIT() {
"core:text2text",
"Free text to text prompt",
"Runs an arbitrary prompt through a language model that returns a reply",
listOf(
inputShape =
TaskInputShape(
"Prompt",
"Describe a task that you want the assistant to do or ask a question",
"Text"
)
),
listOf(
input =
Shape(
"Prompt",
"Describe a task that you want the assistant to do or ask a question",
"Text"
)
),
outputShape =
TaskOutputShape(
"Generated reply",
"The generated text from the assistant",
"Text"
output =
Shape(
"Generated reply",
"The generated text from the assistant",
"Text"
)
)
)
)

private fun getSelectedTaskType(): String = "core:text2text"
Expand Down

0 comments on commit e0cee66

Please sign in to comment.