23 lines
574 B
C#
23 lines
574 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.Extensions.Configuration;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Platform.Articulate.Controllers
|
|
{
|
|
#if ARTICULATE
|
|
[Route("[controller]")]
|
|
public class ParseControllercs : ControllerBase
|
|
{
|
|
private readonly IConfiguration configuration;
|
|
|
|
[HttpGet("/agent/{agentId}/converse")]
|
|
public ActionResult ParseText([FromRoute] string agentId, [FromQuery] string text, [FromQuery] string sessionId)
|
|
{
|
|
return Ok();
|
|
}
|
|
}
|
|
#endif
|
|
}
|